Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 Xcode 很陌生,并且已经设法使用 xcode 4.2 模板中的构建组合了一个基于分页的应用程序。我遇到了一些问题,但现在最紧迫的问题是 iPad 版应用程序周围存在棕色框架。iPhone 版本完美地显示了图像的 NSArray,但 iPad 版本坚持使用粗棕色边框,我似乎无法弄清楚如何消除。我知道它来自根控制器,但不知道如何通过 IB 接口或通过编码接口来操作它。任何帮助将非常感激。
转到您的RootViewController.m文件。代码中,viewDidLoad方法下,将默认pageViewRect改为0.0, 0.0. ie
RootViewController.m
pageViewRect
0.0, 0.0.
pageViewRect = CGRectInset(pageViewRect, 0.0, 0.0);