爲什麼在iOS 7中[UIView子視圖]總是返回零?iOS 7,UIView子視圖是無
我使用這個code,但已經得到了零。
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: (
)
它沒有。你如何創建你的觀點?你能展示一些代碼嗎? – Fogmeister
你可以把你的代碼添加到問題中嗎?外部鏈接可能會下降。 – Amar
@Fogmeister,問題編輯 – CReaTuS