1.写一下UIButton与UITableView的层级结构 2.Cocoa的Foundation对象与Core Foundation对象通过什么keyword进行转换?这些keyword有什么差别? 3.KVO是什么?内部是怎么实现的? 4.能否够把比較耗时的操作放在NSNotificationC ...
分类:
移动开发 时间:
2017-04-30 22:59:44
阅读次数:
267
在iOS 中,UIButton、UIImage等UIView 之所以能够显示在屏幕上,是因为其内部有一个图层(CALayer)。通过UIView的layer 属性可以访问这个图层: 当UIView需要显示到屏幕上时,会调用 drawRect: 方法进行绘图,并且会将所有内容绘制在自己的图层上,绘图完 ...
分类:
其他好文 时间:
2017-04-30 20:38:06
阅读次数:
171
#import <UIKit/UIKit.h> @interface XGGesTuresView : UIView //左下角播放按钮 @property (nonatomic ,strong)UIButton * leftplayerbutton; //最小时间 @property (nonat ...
分类:
移动开发 时间:
2017-04-27 15:34:58
阅读次数:
282
一、使用概要 当添加一个按钮到你的界面,执行以下步骤: 1、在创建时设置按钮的类型。 2、提供一个标题字符串或图像,为您的内容适当调整按钮的大小。 3、连接一个或多个操作按钮的方法。 4、设置自动布局规则界面中的按钮的大小和位置。 5、提供可访问性信息和本地化字符串。 二、具体使用 1、使用类方法创 ...
分类:
其他好文 时间:
2017-04-23 11:22:28
阅读次数:
126
1.自己定义button //左button UIButton *leftBtn = [[UIButton alloc]initWithFrame:RectWithPara(-20, 0, 44, 44)]; [leftBtn addTarget:self action:@selector(btnC ...
分类:
移动开发 时间:
2017-04-20 19:49:47
阅读次数:
187
UIButton *btn = // create the button objc_setAssociatedObject(btn, "firstObject", obj, OBJC_ASSOCIATION_RETAIN_NONATOMIC); [btn addTarget:self action:... ...
分类:
其他好文 时间:
2017-04-01 12:45:38
阅读次数:
148
UILabel属性大全UIButton属性大全UIView属性大全UIImage属性大全UIImageView属性大全UITextField属性大全UIScrollView属性大全UITableView属性大全UIViewController属性大全UIAlertController属性大全UISe ...
分类:
其他好文 时间:
2017-03-21 18:20:51
阅读次数:
170
一.右边两个图标:直接添加两个UIBarButtonItem,其中各自添加UIButton,然后再设置button的图片,为了方便,使用分类自定义,UIBarButtonItem+DQCategory.h 二.左边加四个UIBarButtonItem,其中各自添加自定义的view,设置好xib的宽高 ...
分类:
其他好文 时间:
2017-03-11 00:39:12
阅读次数:
519
UIButton * button =[UIButton buttonWithType:UIButtonTypeSystem]; [self.view addSubview:button];//一定要先添加到视图上 button.frame=CGRectMake(100, 100, 100, 40) ...
分类:
其他好文 时间:
2017-03-09 18:21:21
阅读次数:
260
//1.添加按钮 UIButton *nameView=[UIButton buttonWithType:UIButtonTypeCustom]; //nameView.backgroundColor=[UIColor redColor]; [nameView setBackgroundImage:... ...
分类:
移动开发 时间:
2017-03-03 14:59:20
阅读次数:
166