ios中自定义button】的更多相关文章

自定义button #import <UIKit/UIKit.h> #define KFont 15 @interface DIYButton : UIButton @property(nonatomic,copy)NSString *ctrlName; @end #import <UIKit/UIKit.h> #define KFont 15 @interface DIYButton : UIButton @property(nonatomic,copy)NSString *ct…
//自定义button#import <UIKit/UIKit.h> @interface CKButton : UIButton @end #import "CKButton.h" #define KTitleWidth 0.6 #define KPadding 0.1 #define KImageWidth (1-KTitleWidth -2*KPadding) @implementation CKButton - (id)initWithFrame:(CGRect)f…
做了一段时间的iOS,在菜鸟的路上还有很长的路要走,把遇到的问题记下来,好记性不如烂笔头. 在项目开发中大家经常会用到tableView和collectionView两个控件,然而在cell的自定义上会有一定的不同 tableView 1.纯代码自定义cell,直接用init方法自定义,然后在UITableViewCell* 里面自己根据标识加载 -(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(N…
ios系统默认的cell并不能满足我们的需求 这个时候就需要自定义我们的cell 自定义cell为分组的时候 需要设置分组样式  以下是我常用分组的二种方法: 第一是 在自定义的UITableViewController 中当view加载完毕时 [self.tableView initWithFrame:self.view.bounds style:UITableViewStyleGrouped]; (注意:这种写法没什么问题就是编译的时候会有一个expression result unused…
在项目开发中我们会常常遇到tableView 的cell分割线显示不全,左边会空出一截像素,更有甚者想改变系统的分割线,并且只要上下分割线的一个等等需求,今天重点解决以上需求,仅供参考: 每日更新关注:http://weibo.com/hanjunqiang  新浪微博! 1.cell 分割线不全: 解决方案1: 补全分割线 -(void)viewDidLayoutSubviews { if ([_listTableView respondsToSelector:@selector(setSep…
1:自定义图层,在图层中画图 #import <QuartzCore/QuartzCore.h> @interface MJLayer : CALayer @end #import "MJLayer.h" @implementation MJLayer #pragma mark 在这个方法中所画的动画都会显示到MJLayer上面 - (void)drawInContext:(CGContextRef)ctx { // 在这里不能使用跟UIKit相关的东西 // [[UICo…
图层和VIEW的区别 1:view不具备显示功能,是因view内部有一个图层,才能显示出来 2:图层不具备事件功能,VIEW继承UIRespone具有处理事件功能 3:自定义的图层有一个影式动画,VIEW中图层没有隐式动画(影式动画:改变图层的某个属性,会发生动画,uiview内部图层没有影视动画) 自定义图层 #import <QuartzCore/QuartzCore.h> @interface MJViewController () @end @implementation MJView…
1.先创建一个View继承 UITableViewCell并使用xib快速建立模型. #import <UIKit/UIKit.h> #import "Score.h" @interface ShowScoreCell : UITableViewCell //在.h文件中声明对象@property(nonatomic,strong)Score *score; @end 2.把需要的控件拖上xib并调整xib的大小 3.把对应控件连线至.m文件中 #import "…
解决方案: 在setSelected方法中设置要显示label的背景颜色即可…
需要框架: #import <AVFoundation/AVFoundation.h> #import <AssetsLibrary/AssetsLibrary.h> 布局如下: 相关属性: #import "ViewController.h" #import <AVFoundation/AVFoundation.h> #import <AssetsLibrary/AssetsLibrary.h> typedef void(^Proper…