首页 > 代码库 > iOS 常见小问题

iOS 常见小问题

1. iOS 编译后上下有黑边 ? 

     缺少启动图片

2.Failed to instantiate the default view controller for UIMainStoryboardFile ‘TestStoryboard‘ - perhaps the designated entry point is not set?

  未设置根控制器  解决方法: 技术分享

3. 键盘高度IOS_VERSION >= 8.0 258 其它是216

4.  ios7 先调整TableView高度再跳到最后一行 会出现白框

      [_chatTable scrollToRowAtIndexPath:

             [NSIndexPath indexPathForRow:[self.chatArray count]-1 inSection:0]

                              atScrollPosition: UITableViewScrollPositionBottom

                                      animated:NO];


iOS 常见小问题