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.
我想创建一个 iPad 应用程序,其中单个屏幕上有四个窗口。这些窗口应该同时更新(多任务)。我怎么能做到这一点任何建议/帮助都会很明显
我将假设您的意思是视图而不是窗口。
首先,确保您没有使界面过于复杂。它应该是直观的,四个不同的同时视图听起来很多(当然,这取决于)。
其次,创建一个 UIViewController。然后,创建四个 UIView 子类,包含您需要的所有属性和对象,将它们布置为子视图,并将逻辑构建到 UIViewController 中,UIViewController 可以作为它们的委托。
我希望这可以帮助您朝着正确的方向开始,但正如其他人所说,这是一个广泛的问题,并且有许多适用的方法。