UIColor *color1=[UIColor colorWithRed:155/255 green:255/255 blue:255/255 alpha:1];//方法1,使用 静态方法创建color _view1.backgroundColor=color1; UIColor *color2=... ...
分类:
移动开发 时间:
2017-02-21 19:14:46
阅读次数:
208
CAShapeLayer与UIBezierPath动画: CAShapeLayer与UIBezierPath的动画,就离不开 CABasicAnimation;也将会使用到 strokeEnd、strokeStart、lineWidth 三个属性: 先做一条贝塞尔曲线: strokeEnd: str ...
分类:
移动开发 时间:
2017-02-16 01:28:05
阅读次数:
280
demo 来源: https://github.com/jdg/MBProgressHUD/ //只有小菊花 - (void)indeterminateExample { // Show the HUD on the root view (self.view is a scrollable tabl ...
分类:
其他好文 时间:
2017-02-06 17:01:30
阅读次数:
1034
知识点: 1.UIButton使用和事件机制 2.UIImage 3.自定义UIButton UIButton 1.创建方式 按钮类型 UIButtonTypeCustom 用户自定义按钮 UIButtonTypeRoundedRect 系统按钮 UIButtonTypeDetailDisclosu ...
分类:
移动开发 时间:
2017-01-17 00:17:20
阅读次数:
212
一、制作静态库文件 二、配置静态库文件 三、运行项目,生成静态库 1、用模拟器运行一次; 2、用真机运行一次; 四、静态库完成 libaMakeA.a >show in finder 五、将模拟器和真机的.a 合并 终端:wangyalu:~ wangyalu$ lipo -create /User ...
分类:
移动开发 时间:
2017-01-11 15:55:22
阅读次数:
373
//进入按钮 UIButton *enterMainButton = [[UIButton alloc] initWithFrame:CGRectMake(65, self.PageHeight-120,250 , 45)]; enterMainButton.layer.borderWidth = ... ...
分类:
移动开发 时间:
2017-01-11 15:43:27
阅读次数:
345
// 获得当前的版本 #define iOS(version) ([UIDevice currentDevice].systemVersion.doubleValue >= (version)) #define ColorA(r, g, b, a) [UIColor colorWithRed:(r) ...
分类:
其他好文 时间:
2017-01-06 18:35:39
阅读次数:
171
- (void)viewDidLoad { [super viewDidLoad]; // 创建一个UIActivityIndicatorView,大小是固定的 UIActivityIndicatorView *aiv = [[UIActivityIndicatorView alloc] initW ...
分类:
其他好文 时间:
2017-01-03 11:53:17
阅读次数:
206
1新对象方法和分类方法的命名规范? 通常大家都以类名开头,这样见类名即可敲出该类的方法,比如Color类的方法一般命名为 + (UIColor *)colorWithWhite:(CGFloat)white alpha:(CGFloat)alpha;等等 我们写一个新类比如person类,其实还蛮合 ...
分类:
其他好文 时间:
2016-12-27 20:22:39
阅读次数:
184
//获取字符串的宽度 -(float)widthForString:(NSString *)value fontSize:(float)fontSize andHeight:(float)height { UIColor *backgroundColor=[UIColor blackColor]; ... ...
分类:
移动开发 时间:
2016-12-26 21:49:54
阅读次数:
288