Button创建可以不用[UIButton alloc]initwithFrame: 不用再开辟空间了,正确的写法如下:
UIButton rightNowButton = [UIButton buttonWithType:UIButtonTypeCustom];
rightNowButton.frame=CGRectMake();
时间: 2024-11-01 08:23:34
Button创建可以不用[UIButton alloc]initwithFrame: 不用再开辟空间了,正确的写法如下:
UIButton rightNowButton = [UIButton buttonWithType:UIButtonTypeCustom];
rightNowButton.frame=CGRectMake();