05 2016 档案
摘要:转自http://www.cnblogs.com/jys509/p/4839803.html Cocoapods安装步骤 1.升级Ruby环境 如果Ruby没有安装,请参考 如何在Mac OS X上安装 Ruby运行环境 2.安装CocoaPods时我们要访问cocoapods.org,用淘宝的Ru
阅读全文
摘要:layer类似于ps的图层,如果把一个uiview看做图片的画,layer就像是图层.一个图片是由很多个大小不同的有层次的图层构成的,uiview也是.1. 一个view有一个underlying layer,它是这个view所有的draw的实现者,可通过view的layer property获得,
阅读全文
摘要:转至 http://blog.csdn.net/guo_hongjun1611/article/details/7839371 使用UIBezierPath类可以创建基于矢量的路径,这个类在UIKit中。此类是Core Graphics框架关于path的一个封装。使用此类可以定义简单的形状,如椭圆或
阅读全文
摘要:#pragma mark - 编辑完成 -(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { [self.view endEditing:YES]; } -(BOOL)textFieldShouldReturn:(UITextField *)textField { [self.view endEdit...
阅读全文
摘要:- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{ if ([segue.destinationViewController isKindOfClass:[OneVC class]]) { OneVC *one = segue.destinationViewController; ...
阅读全文
摘要:button.imageEdgeInsets = UIEdgeInsetsMake(0, labelWidth, 0, -labelWidth);button.titleEdgeInsets = UIEdgeInsetsMake(0, -imageWith, 0, imageWith); 获取图片宽
阅读全文
摘要:@property (strong, nonnull) UIVisualEffectView *visualEffectView; -(void)setBackImageView {
阅读全文