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