本文介绍了如何在iOS6 iPad中使电池更宽的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我有一款专为iPad和iPhone设计的应用。对于iPhone来说一切都还可以,但是对于iOS6平台的iPad版本,从单元格的左侧和右侧有一个额外的空间 - 在iOS7中它没问题。您可以在下一个屏幕截图中的故事板中看到它们:I have an app which was designed for iPad and iPhone. For iPhone everything is ok but in iPad version for the iOS6 platform there is an extra space from the left and right sides of the cell - in iOS7 it's ok. You can see them in storyboards on the next screenshot:以及单元格的大小:如何删除这个额外空格?How can I remove this extra space ?推荐答案 IOS 6& 6之间几乎没有变化。用于UITableView的IOS 7分组(UITableViewCell):There is little changes between IOS 6 & IOS 7 for the UITableView grouped(UITableViewCell): IOS6: cell.contentView 和 cell.view 与他们的框架完全不同。cell.contentView and cell.view is totally different with their frames . IOS 7: Cell.ContentView 只不过是Cell的整体视图。Cell.ContentView is nothing but the Whole View of the Cell . IOS 6(VIEW):如果您仍想考虑您的想法,请将其设为 UITableView的简单样式 OR 对单元格进行子类化。If you still wants to do with your thought then make it as Plain Style for UITableView OR by Subclassing the cell. 注意:这不是答案对于你的问题。它只是建议NOTE: This is not an answer for your question. Its just the way to suggest 这篇关于如何在iOS6 iPad中使电池更宽的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-12 05:15