- iOS-CoreAnimation-知识点记录
- 性能调优
- 高效绘制
- 图像IO
- 图层性能
-
- AFNetworking -By雷神
- push
- cache
-
pod install --verbose --no-repo-update 只查找本地,而且不联网更新库,快!
-
使用shell的命名别名来简化
setup pod update alias name
alias pod_update='pod update --verbose --no-repo-update'
alias pod_install='pod install --verbose --no-repo-update'
#pragma mark - Lifecycle
- (instancetype)init {}
- (void)dealloc {}
- (void)viewDidLoad {}
- (void)viewWillAppear:(BOOL)animated {}
- (void)didReceiveMemoryWarning {}
#pragma mark - IBActions/Event Response
- (IBAction)submitData:(id)sender {}
- (void)someButtonDidPressed:(UIButton*)button
#pragma mark - Protocol conformance
#pragma mark - UITextFieldDelegate
#pragma mark - UITableViewDataSource
#pragma mark - UITableViewDelegate
#pragma mark - Private
- (void)privateMethod {}

