码迷,mamicode.com
首页 >  
搜索关键字:uibutton    ( 1178个结果
UIButton中的**EdgeInsets是做什么用的?
UIButton中的**EdgeInsets是做什么用的?UIEdgeInsetsMakeCreates an edge inset for a button or view.An inset is a margin around the drawing rectangle where each s...
分类:其他好文   时间:2014-05-27 01:52:22    阅读次数:297
ios开发中UIButton的使用(一)
ios开发中UIButton的使用(一)一、简单说明一般情况下,点击某个控件后,会做出相应反应的都是按钮按钮的功能比较多,既能显示文字,又能显示图片,还能随时调整内部图片和文字的位置二、按钮的三种状态normal(普通状态)默认情况(Default)对应的枚举常量:UIControlStateNor...
分类:移动开发   时间:2014-05-21 20:14:53    阅读次数:394
(5.17)简单动画
- (IBAction)button:(UIButton *)sender { if (sender.tag == 0) { //计算view的frame属性 NSString *frame = NSStringFromCGRect(_view1.frame); NSString *outfr...
分类:其他好文   时间:2014-05-19 19:32:19    阅读次数:236
iOS 绘画学习
本文翻译自:《iOS 7编程》 Matt Neuburg 著,OREILLY出版。 很多UIView的子类,例如UIButton或者UIlabel,都知道如何绘制自己;不过迟早,你都会想绘制一些自己想要的效果。你可以通过一些已有的类在代码中绘制一幅图片,然后在自己的界面上展示出来,例如UIIm...
分类:移动开发   时间:2014-05-19 07:27:46    阅读次数:1132
导航视图栏左右键自定义
//创建按钮初始化UIButton*leftButton=[[UIButtonalloc]initWithFrame:CGRectMake(0,0,60,24)];//添加返回方法[leftButtonaddTarget:selfaction:@selector(backMainViewController)forControlEvents:UIControlEventTouchUpInside];//设置字体颜色,状态[leftButtonsetTitleColor..
分类:其他好文   时间:2014-05-15 00:36:08    阅读次数:320
reloadSections
self.isOpen = [NSMutableArray array];     for (int j = 0; j         [self.isOpen addObject:[NSNumber numberWithInt:0]];     } -(void)buttonClick:(UIButton*)button {        NSNumber *num ...
分类:其他好文   时间:2014-05-13 08:12:11    阅读次数:264
iOS 中UIButton的 settitle 和 titlelabel的使用误区
UIButton中设置Titl方法包括以下几种:- (void)setTitle:(NSString *)title forState:(UIControlState)state; - (void)setAttributedTitle:(NSAttributedString *)tit...
分类:移动开发   时间:2014-05-08 22:49:19    阅读次数:640
iOS设置button上的文字和图片上下垂直/水平居中对齐
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];//button的类型 button.frame = CGRectMake(100, 100,90, 90);//button的frame button.backgro.....
分类:移动开发   时间:2014-05-08 15:21:38    阅读次数:404
iOS中创建自定义的圆角按钮
iOS中很多时候都需要用到指定风格的圆角按钮,尽管UIButton提供了一个方式创建圆角按钮:+ (id)buttonWithType:(UIButtonType)buttonType;//指定buttonType为UIButtonTypeRoundedRect但是这样创建出来的按钮仅仅能支持默认的...
分类:移动开发   时间:2014-05-07 16:48:43    阅读次数:455
设置UIButton的文字显示位置、字体的大小、字体的颜色、加粗
btn.frame = CGRectMake(x, y, width, height);[btn setTitle: @"search" forState: UIControlStateNormal];//设置按钮上的自体的大小//[btn setFont: [UIFont systemFontSi...
分类:其他好文   时间:2014-05-06 10:51:54    阅读次数:340
1178条   上一页 1 ... 115 116 117 118 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!