上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 33 下一页
摘要: 效果图: 代码部分: #import "ViewController.h" @interface ViewController () @property (nonatomic, strong) CALayer *imageLayer; @property (nonatomic, strong) CA 阅读全文
posted @ 2016-01-21 11:11 Rinpe 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 由于直接更改layer的contents显示的隐式动画切换的时候的动画持续时间没办法控制, 切换效果不尽人意,所以这里配合了CABasicAnimation实现淡入淡出的切换效果,另外还可以使用组合动画对多种动画进行组合, 实现更复杂的动画效果, 这里仅仅只是多添加了缩放效果为示例...效果图:Vi... 阅读全文
posted @ 2016-01-20 14:18 Rinpe 阅读(1052) 评论(0) 推荐(0) 编辑
摘要: 效果图: 代码部分: #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // 创 阅读全文
posted @ 2016-01-20 10:13 Rinpe 阅读(220) 评论(0) 推荐(0) 编辑
摘要: ViewController.m#import "ViewController.h"@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; /* 初始化layer */ // ... 阅读全文
posted @ 2016-01-19 15:52 Rinpe 阅读(352) 评论(0) 推荐(0) 编辑
摘要: provisioning profile path:~/Library/MobileDevice/Provisioning Profiles打开并日期排序,删除老的 provisioning profile 文件即可 阅读全文
posted @ 2016-01-19 10:17 Rinpe 阅读(227) 评论(0) 推荐(0) 编辑
摘要: git add -A stages All git add . stages new and modified, without deleted git add -u stages modified and deleted, without new 阅读全文
posted @ 2016-01-18 10:48 Rinpe 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 起初我在我的项目中先接入了AlipaySDK,没有出现什么问题,之后想要接入淘宝SDK之后,就出现了duplicate symbols for architecture i386的错误经过一段时间排错,解决方法如下:可以看到,两个SDK中都包含了AlipaySDK.bundle和AlipaySDK.... 阅读全文
posted @ 2016-01-17 16:07 Rinpe 阅读(640) 评论(0) 推荐(0) 编辑
摘要: xcode中 有时候会报一个警告:[WARN]Warning: Multiple build commands for output file /xxx要解决这个问题很简单:1.选择你的工程2.选择target3.点击 Build Phases4.展开Copy Bundle Resources5.删... 阅读全文
posted @ 2016-01-17 15:05 Rinpe 阅读(778) 评论(0) 推荐(0) 编辑
摘要: MainTabBarViewController *mainCtrl = [[MainTabBarViewController alloc] init];LeftViewController *leftMenuViewController = [[LeftViewController alloc] ... 阅读全文
posted @ 2016-01-17 14:33 Rinpe 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 出现这个提示是由于以下原因造成:这里我用到了MJExtension将字典转为模型,但再转为模型的时候,出现这个提示,原因就是因为NSInteger后面多一个一个“*”@property (nonatomic,assign) NSInteger *star;改为:@property(nonatomic... 阅读全文
posted @ 2016-01-16 17:06 Rinpe 阅读(380) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 33 下一页