我嘗試使用這種方法來獲取所有子視圖,但是當我運行應用程序,我有一個消息發送到釋放實例錯誤iphone - Objective-C的「消息發送到釋放實例
subviewsArray = self.view.subviews;
for (int i=0; i <subviewsArray.count; i++) {
UIView *subview = [subviewsArray objectAtIndex:i];
if (subview.tag >= 0) {
[subview removeFromSuperview];
}
}
在我。 .H
@property (nonatomic, strong) NSArray *subviewsArray;
@Pfitz你聽說過屬性? – guitarflow 2012-07-10 13:15:20
@guitarflow NSArray沒有房產數量... – Pfitz 2012-07-10 13:16:03
@Pfitz,對不起,認爲點運算符僅用於屬性。我的錯。 – guitarflow 2012-07-10 13:19:40