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

ios-給subView添加UIButton

編輯:編程綜合問答
給subView添加UIButton

在用戶點擊屏幕時,應該有一個帶按鈕的彈出窗出現。但是彈出窗出現,按鈕沒出現。不知道哪出錯了。是在subView中的subView。

-(void) popUpWithX:(int)x andY:(int)y {
    CGRect popUpRect = CGRectMake(x, y, 125, 75);
    popUp = [[UIView alloc] initWithFrame:popUpRect];
    popUp.backgroundColor = [UIColor whiteColor];
    popUp.layer.cornerRadius = 7.5f;
    popUp.layer.masksToBounds = YES;

    [self.view addSubview:popUp];
    UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 100, 30)];
    [button setTitle:@"Click me!" forState:UIControlStateNormal];
    [popUp addSubview:button];
}

最佳回答:


按鈕已經在了,不顯示是由於maskToBounds 設置為YES了。改為設置NO試試,然後修正一下button的x,y坐標。

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