程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-點擊關閉按鈕隱藏subView

ios-點擊關閉按鈕隱藏subView

編輯:編程綜合問答
點擊關閉按鈕隱藏subView

iPhone應用中,添加subView到窗口,還要實現一個功能,在點擊關閉按鈕是,應該subView隱藏起來,這是創建subView的代碼:

 UIView*subView=[[UIView alloc]initWithFrame:CGRectMake(0,0, 1024,768)];
 subView.backgroundColor=[UIColor colorWithPatternImage:[UIImage imageNamed:@"bgPopupback.png"]];
 UIWindow* window = [UIApplication sharedApplication].keyWindow;
 if (!window) 
    window = [[UIApplication sharedApplication].windows objectAtIndex:0];
 [[[window subviews] objectAtIndex:0] addSubview:subView];  

關閉按鈕:

  -(void)closeButtonAction{
  NSLog(@"CLicked on this button");
  [subView removeFromSuperview] ; 
  self.tableView.userInteractionEnabled=TRUE;

}

最佳回答:


使用removefromsuperview刪除subView,如果只是想隱藏 subView.hidden = YES;,在按鈕動作內執行。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved