twitter - How to remove tweet images presenting on the Tweetview using iOS fabric.io SDK -


i using ios fabric.io sdk showing twitter feed. don't want show tweet images presenting on tweetview, how remove tweet image ?

you can loop subview of tweetview , remove imageview dont want show,

for (uiview *subview in [tweetview subviews]){         nslog(@"class: %@", [subview class]);     if ([subview iskindofclass:[uiimageview class]]){             [subview removefromsuperview];     } } 

Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -