iOS 开发中的坑

@Manajay:我的 github 博客

xib 中的拖线 label 不能设置 富文本的图文混排

在iOS8上有这么一样bug:弹出录制视频页面,再回来发现整个view都往下移动了,可能网上有很多解决办法,下面只是其中一种

[picker dismissViewControllerAnimated:YES completion:^{
    // for fixing iOS 8.0 problem that frame changed when open camera to record video.
    self.tabBarController.view.frame  = [[UIScreen mainScreen] bounds];
    [self.tabBarController.view layoutIfNeeded];
}];

横屏时 使用UIAlertViewController 时容易引起崩溃.

参考链接

iOS开发-记录下在开发过程中遇到的问题的解决方案及经验总结-1

你可能感兴趣的:(iOS 开发中的坑)