为什么在 iOS 7 [UIView subviews] 中总是返回 nil ?
我正在使用这段代码,但已经得到了nil。
iOS 7 中的错误?
编辑:
TWTweetComposeViewController* tweetSheet = [[TWTweetComposeViewController alloc] init];
[tweetSheet setInitialText: twitter_descrp];
[tweetSheet addURL:[NSURL URLWithString: twitter_link]];
NSData* imageData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString: twitter_img]];
UIImage* uiImage = [UIImage imageWithData:imageData];
[tweetSheet addImage:uiImage];
NSLog(@"subviews: %@", [tweetSheet.view firstSubviewOfClass:[UIButton class]] );
这里firstSubviewOfClass来自iOS7 Subviews Hierarchy
在 NSLog 中返回这个:
subviews: (
)