如何使用iOS fabric.io SDK删除在Tweetview上显示的推文图像

时间:2015-04-01 06:04:29

标签: ios twitter fabric.io

我正在使用 iOS fabric.io SDK来显示Twitter Feed。 我不想在Tweetview上显示推文图片,如何删除推文图片?

1 个答案:

答案 0 :(得分:0)

你可以循环你的TweetView的所有子视图,并删除你不想显示的imageView,

for (UIView *subview in [Tweetview subviews]){
        NSLog(@"Class: %@", [subview class]);
    if ([subview isKindOfClass:[UIImageView class]]){
            [subview removeFromSuperview];
    }
}