UIButton_ios
snn1410
这个作者很懒,什么都没留下…
展开
-
UIButton按钮用法
UIButton按钮用法: UIButton *goButton = [UIButtonbuttonWithType:UIButtonTypeRoundedRect];//UIButtonTypeRoundedRect ** [goButtonsetTitle:@"Go!"forState:UIControlStateNormal]; [goButtonsi原创 2012-03-24 10:43:05 · 695 阅读 · 0 评论 -
UIButton详解--转
转自: http://blog.csdn.net/jb80400812/article/details/6614184 创建UIButton UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect]; btn.frame = CGRectMake(30, 360, 90, 35);转载 2012-03-07 15:05:39 · 1591 阅读 · 0 评论 -
为UIButton设置边框等属性
declare your button: Code: UIButton *downButton = [[UIButton alloc] initWithFrame:CGRectMake(60.0, 310.0, 55.0, 37.0)]; [downButton setTitle:@"Name of Button" forState:UIControlStateNormal]; [转载 2012-04-10 13:04:19 · 27723 阅读 · 0 评论