-1
我有以下代碼,並沒有顯示uiview,我已經放置了一個斷點&看到視圖不是零和框架設置爲給定大小 - 爲什麼視圖是沒有顯示在我的uiviewcontroller?添加子視圖不顯示我的用戶界面
@property (nonatomic,strong) LoadingView *loadingView;
self.loadingView = [[[NSBundle mainBundle] loadNibNamed:@"LoadingView" owner:self options:nil] objectAtIndex:0];
self.loadingView.frame = CGRectMake(110,170,100,100);
[self.view addSubview:self.loadingView];
你在哪裏添加視圖?你確定self.view已經被加載了嗎? – tadasz
@tadasz在我的方法之一 –