码迷,mamicode.com
首页 >  
搜索关键字:settitle    ( 175个结果
iOS 中UIButton的 settitle 和 titlelabel的使用误区
UIButton中设置Titl方法包括以下几种:- (void)setTitle:(NSString *)title forState:(UIControlState)state; - (void)setAttributedTitle:(NSAttributedString *)tit...
分类:移动开发   时间:2014-05-08 22:49:19    阅读次数:640
设置UIButton的文字显示位置、字体的大小、字体的颜色、加粗
btn.frame = CGRectMake(x, y, width, height);[btn setTitle: @"search" forState: UIControlStateNormal];//设置按钮上的自体的大小//[btn setFont: [UIFont systemFontSi...
分类:其他好文   时间:2014-05-06 10:51:54    阅读次数:340
IOS GCD
UIButton * btn = [[UIButton alloc]initWithFrame:CGRectMake(100, 100, 100, 100)]; [btn setTitle:@"default"forState:UIControlStateNormal]; btn.bac...
分类:移动开发   时间:2014-05-05 10:25:57    阅读次数:514
创建界面视图的流程
1,创建主窗体 在内存中实例化JFrame对象 通过使用setSize(),setBounds()或者pack()方法给JFrame设置大小 通过使用setTitle()设置标题,setDefaultCloseOperation()设置关闭策略,setLocationRelativeTo()设...
分类:其他好文   时间:2014-04-28 11:16:39    阅读次数:486
UI学习第二篇 (控件)
UIbutton 也是一个控件,它属于UIControl 用的最多的就是事件响应1.//创建按钮对象 UIButton * _botton = [UIButton buttonWithType:UIButtonTypeCustom];//设置标题[_botton setTitle:@"按住说话" f...
分类:其他好文   时间:2014-04-28 05:55:59    阅读次数:523
175条   上一页 1 ... 16 17 18
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!