iOS开发随手记

1.在iOS11之后调用[tableView reloadData];当数据多的情况下会出现闪屏的情况,解决这种情况有以下两种发方法:

1.1

_tableView.estimatedRowHeight = 0;
_tableView.estimatedSectionHeaderHeight = 0;
_tableView.estimatedSectionFooterHeight = 0;

1.2

__weak typeof (self)wself = self;
[UIView performWithoutAnimation:^{
    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:2 inSection:0];
    [wself.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
 }];

2.ViewController内容向下偏移的问题

2.1

从iOS7开始,苹果把self.navigationController.navigationBar.translucent = YES 作为默认处理。对此苹果注释的解释为 // Default is NO on iOS 6 and earlier. Always YES if barStyle is set to UIBarStyleBlackTranslucent
当你将导航栏设置为不透明时(self.navigationController.navigationBar.translucent = NO;)这时候就会出现一个问题,当你push的控制器以ScrollView或TableView为主View时,模糊处理会使状态栏和NavigationBar挡住后面的视图,所以苹果会自动把主View的内容向下移动64px,同理,底部Tabbar会使主View向上偏移49px,Toolbar会使主View向上偏移44px 。这时候可以通过2.2的方法设置他不向下偏移。

2.2

UIScrollerView 在iOS10,如果上一个页面隐藏导航栏或者当前ViewController的导航栏设置为不透明状态,那么下一个页面的autoAdjust需取消或者其UIScrollerView的top-margin约束于该controller的view的top。也可以通过代码实现实现:

    if (@available(iOS 11.0, *)) {
        scrollview.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
    } else {
        self.automaticallyAdjustsScrollViewInsets = NO;
    }

3.UITabBarController模态弹出ViewController

当在UITabBarController的viewDidLoad中执行[self presentViewController:vc animated:YES completion:nil];时报错如下:

Warning: Attempt to present  on  whose view is not in the window hierarchy!

原因是当前Tabbar还未初始完成,解决方法是:只要将[self presentViewController:vc animated:YES completion:nil];写在viewDidAppear就可以了.

4.Storyboard/xib的UIButton当调用setTitle的时候出现文字闪动的情况,只需要将该type改为UIButtonTypeCustom就好了,因为系统默认为UIButtonTypeSystem。

5.transitionFromViewController切换ViewController容易出现的UI问题:

UIViewController *oldViewController = _currentVC;
    UIViewController *newController = sender.selectedSegmentIndex ? _warnningVC : _equipmentVC;
    newController.view.frame = _contentView.bounds;
    [self transitionFromViewController:oldViewController toViewController:newController duration:1.0 options:UIViewAnimationOptionTransitionNone animations:nil completion:^(BOOL finished) {
        _currentVC = newController;
        sender.userInteractionEnabled = YES;
    }];

newController.view.frame = _contentView.bounds;这里必须给newController重新设置frame,否则会出现UI适配问题。

6.iOS编码规范

6.1 私有变量

以 _ 开头,第一个单词首字母小写,后面的单词的首字母全部大写。
eg:UILabel *_nameLbl;

6.2 property变量

小驼峰式命名:第一个单词以小写字母开始,后面的单词的首字母全部大写
Block、NSString属性应该使用copy关键字
禁止使用synthesize关键词
eg:@property (nonatomic, readwrite, copy) NSString *userName;

6.3 宏和常量

6.3.1 宏

#define 预处理定义的常量全部大写,单词间用 _ 分隔

宏定义中如果包含表达式或变量,表达式或变量必须用小括号括起来。

6.3.2 常量

对于局限于某编译单元(实现文件)的常量,以字符k开头,例如kAnimationDuration,且需要以static const修饰
对于定义于类头文件的常量,外部可见,则以定义该常量所在类的类名开头,例如EOCViewClassAnimationDuration, 仿照苹果风格,在头文件中进行extern声明,在实现文件中定义其值

//宏定义的常量

#define ANIMATION_DURATION 0.3 
#define MY_MIN(A, B) ((A)>(B)?(B):(A)) 

//局部类型常量
static const NSTimeInterval kAnimationDuration = 0.3;

//外部可见类型常量

//EOCViewClass.h 
extern const NSTimeInterval EOCViewClassAnimationDuration; 
extern NSString *const EOCViewClassStringConstant; //字符串类型 
//EOCViewClass.m const NSTimeInterval EOCViewClassAnimationDuration = 0.3; NSString *const EOCViewClassStringConstant = @"EOCStringConstant";

7.SourceTree保存密码--解决每次pull、push都要输入两次密码的问题

提供一个简单的解决方法,即在远程仓库的url中显示输入username和password,每次就不用再重复输入,当然也有一定的安全隐患,可根据实际情况决定是否采用。

1)选中菜单:Repository(仓库)-- Repository settings(仓库设置) --Remotes--选中url--Edit;
2)比如URL为:http://xxxxx/xxxx.git 修改为:http://username:password@xxxxx/xxxx.git (即新增username:password@)
username和password分别为你登录的用户名和密码,之后就不用每次都输入密码了。
个人实践:主要设置一个、拉取、删除用户名密码—都可以了

8.OC项目中pod ReactiveCocoa 报错

屏幕快照 2018-11-30 下午5.16.28.png

删除reactiveCocoa 里面所有的swift文件 删除result文件夹里面所有文件 删除result.framework
重新pod install

9.TableView设置为UITableViewStyleGrouped时顶部有空白占位View

这是因为当tableView为UITableViewStyleGrouped时,苹果会给其headerView和footView一个默认高度,只要设置self.tableView.tableHeaderView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 0, 0.01)];就行了,注意高度必须大于0,0的话会拿系统默认的高度。

你可能感兴趣的:(iOS开发随手记)