Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用iOS fabric.io SDK 来显示 Twitter 提要。我不想在 Tweetview 上显示推文图像,如何删除推文图像?
您可以循环 TweetView 的所有子视图并删除您不想显示的 imageView,
for (UIView *subview in [Tweetview subviews]){ NSLog(@"Class: %@", [subview class]); if ([subview isKindOfClass:[UIImageView class]]){ [subview removeFromSuperview]; } }