加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

xcode – 如何在单击按钮时将UIView添加为UIViewController的子

发布时间:2020-12-14 17:45:11 所属栏目:百科 来源:网络整理
导读:在我的应用程序中,每当用户点击我的主UIViewController中的按钮时,我都需要动态添加UIView.我怎样才能做到这一点? 解决方法 使用此签名在视图控制器中创建一个新方法: – (IBAction)buttonTapped:(id)sender.保存文件.转到Interface Builder并将按钮连接
在我的应用程序中,每当用户点击我的主UIViewController中的按钮时,我都需要动态添加UIView.我怎样才能做到这一点?

解决方法

使用此签名在视图控制器中创建一个新方法: – (IBAction)buttonTapped:(id)sender.保存文件.转到Interface Builder并将按钮连接到此方法(按住Control并单击并从按钮拖动到视图控制器[可能是您的文件所有者]并选择-buttonTapped方法).
然后实现方法:

-(IBAction) buttonTapped:(id)sender {
    // create a new UIView
    UIView *newView = [[UIView alloc] initWithFrame:CGRectMake(10,10,100,100)];

    // do something,e.g. set the background color to red
    newView.backgroundColor = [UIColor redColor];

    // add the new view as a subview to an existing one (e.g. self.view)
    [self.view addSubview:newView];

    // release the newView as -addSubview: will retain it
    [newView release];
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读