I am using iOS fabric.io SDK for Showing Twitter feed. I don't want to show the tweet images presenting on the Tweetview, how to remove the tweet image ?
Asked
Active
Viewed 199 times
1 Answers
0
You can loop all the subView of your TweetView and remove the imageView which you dont want to show,
for (UIView *subview in [Tweetview subviews]){
NSLog(@"Class: %@", [subview class]);
if ([subview isKindOfClass:[UIImageView class]]){
[subview removeFromSuperview];
}
}

Retro
- 3,985
- 2
- 17
- 41
-
Thanks for your answer @Retro. TweetView contains three images screen image, twitter image and posting image. Is there any direct fabric.io ios sdk api support ? – karthikPrabhu Alagu Apr 02 '15 at 04:14
-
1I havent used SDK so I am not sure about it, you can do some documentation reading for that. – Retro Apr 02 '15 at 05:12