代码形式怎么写??不需要用IB |
|
20分 |
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
//设置属性 button.frame = CGRectMake(…); … [button addTarget:self action:@selector(响应函数名称:) forControlEvents:UIControlEventTouchUpInside]; [mainView addSubiew:button] 大概就是这样吧 |
定义我知道,就是定义多个?如何定义???是不是需要每次都创建一个控件对象呢?
|
|
sure
|