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.
我正在尝试制作一个记忆应用程序,屏幕必须在那里停留大约 10 秒,然后它必须翻转,或者换句话说,进入下一个屏幕?我应该通过使用计时器并将其连接到我需要连接到的屏幕来做到这一点吗?我对它的工作原理有点困惑..
感谢所有帮助。谢谢
你可以只使用:
[self performSelector:@selector(selector) withObject:nil afterDelay:10];
并让选择器加载新视图。