允许在 UISplitViewController 之间切换吗?
Swap between UISplitViewController allowed?
我的应用程序中需要两个 UISplitViewController
,我使用 rootViewController
swap 在它们之间来回切换。批准该应用程序是否存在任何风险?
谢谢
应用审查期间使用的所有规则在 App Store Review Guidelines 中进行了描述。
点10. User interface有这样的规则:
10.1 Apps must comply with all terms and conditions explained in the Apple iOS Human Interface Guidelines.
10.3 Apps that do not use system provided items, such as buttons and icons, correctly and as described in the Apple iOS Human Interface Guidelines may be rejected.
iOS Human Interface Guidelines 有这样的拆分视图控制器规则:
- Avoid creating a secondary pane that is narrower than the primary pane.
- Avoid displaying a navigation bar in both panes at the same time.
- In general, indicate the current selection in the primary pane in a persistent way.
- Give people alternative ways to access the primary pane, if appropriate.
如您所见,它没有提到 UISplitViewController
的不同对象之间的切换。你会很好,因为你不会试图同时显示两个拆分控制器。
我的应用程序中需要两个 UISplitViewController
,我使用 rootViewController
swap 在它们之间来回切换。批准该应用程序是否存在任何风险?
谢谢
应用审查期间使用的所有规则在 App Store Review Guidelines 中进行了描述。
点10. User interface有这样的规则:
10.1 Apps must comply with all terms and conditions explained in the Apple iOS Human Interface Guidelines.
10.3 Apps that do not use system provided items, such as buttons and icons, correctly and as described in the Apple iOS Human Interface Guidelines may be rejected.
iOS Human Interface Guidelines 有这样的拆分视图控制器规则:
- Avoid creating a secondary pane that is narrower than the primary pane.
- Avoid displaying a navigation bar in both panes at the same time.
- In general, indicate the current selection in the primary pane in a persistent way.
- Give people alternative ways to access the primary pane, if appropriate.
如您所见,它没有提到 UISplitViewController
的不同对象之间的切换。你会很好,因为你不会试图同时显示两个拆分控制器。