Apple标准是否允许AppDelegate.m
?
- (void) addButtonPressed:(UIBarButtonItem *) sender
{
PrivacyPolicyViewController *privacy = [[PrivacyPolicyViewController alloc] init];
[_viewController presentViewController:privacy animated:YES completion:nil];
}
我在_tabBarController
中合成了AppDelegate
作为属性,并添加了UIButton
(使一个标签与Instagram标签栏中的较大按钮相似)。
如何制作新的viewController
加载?