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.
大家好,我在这边找到了一个非常好的教程,可以将 Pdf 视图添加到我的 xcode 项目中。
教程
但是我最后在 ViewController .m 中的问题是 pdf 的大小设置为
CGRect frame = CGRectMake(0, 100, 768, 800);
但这是为 Ipad 设计的,我如何为 iPhone 设置它,以便 pdf 全屏显示并在顶部显示导航栏?
感谢帮助
在这里,您可以使用始终为真的父控制器的框架(如果它在 iPhone 和 iPad 中正确显示)。
就像
//Gives the frame of parent controller. CGRect frame=self.view.frame;
现在您可以根据需要调整 Y 偏移。前任。
frame.origin.y=100;