我用不同UIViewController
的 s 编写了一个小应用程序。在我的 AppDelegate 我有这个:
self.window.rootViewController = [[UINavigationController alloc]
initWithRootViewController:
[[MainViewController alloc] init]];
MainViewController,包含一个方法:
- (void)aMethod
{
[self.navigationController pushViewController:[[CellViewController alloc] init]
animated:TRUE];
}
CellViewController,包含一个方法:
- (void)aMethod
{
StartToBuildViewController * controller = [[StartToBuildViewController alloc] init];
[self.navigationController pushViewController:controller animated:true];
}
等等。我的问题是:UIViewController
与他人分享信息的最佳方式是什么?我只需要存储标志状态和/或日期时间值。我可以使用全局变量吗?数据库?还有什么?
我来自 php,在 php 中我会使用数据库或会话变量。