如何在 iPhone 的 UIView 中使用负号的框架大小?
我有一个严重的疑问。我已经为 UIView 设置了负数的框架大小。 iPhone 横向模式下的示例 (-250,0,300,400)。现在,我怀疑如果我将此应用程序提交到应用程序商店并使用此值,他们会拒绝此应用程序或接受。请澄清我的疑问。请帮我。提前致谢。
I have one critical doubt. I have set a frame size in minus for UIView. Example (-250,0,300,400) in Landscape mode iPhone. Now, my doubt is if i submit this app to App Store with this value they will reject this app or accept. Please clarify my doubt. Please help me. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将视图框架的原点设置为离开屏幕(即小于 (0,0))并没有什么问题 - 例如,这通常在准备滑到屏幕上的视图时使用。在您的情况下,只有视图最右边的 50 个点可见。
这当然不会成为从应用程序商店拒绝该应用程序的理由。
There is nothing wrong with setting the origin of a view's frame to off the screen (i.e. less than (0,0)) - this is commonly used when preparing a view that slides onto the screen, for example. In your case only the rightmost 50 points of the view will be visible.
It certainly won't be a reason to reject the app from the app store.