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
Post a Comment