我想在我的 iphone 应用程序中启用通知。因此,我在应用 ID 中进行了修改:
之后,我再次生成开发和分发配置文件并安装在我的 xcode 中。
我的应用程序是一个基于选项卡的应用程序,第一个选项卡是 UITableViewController
我添加以下行:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound)];
return YES;
}
所以,我想我应该将我的应用程序安装在我的 iphone 中的通知安装应用程序列表中,但事实并非如此。
我错过了一些步骤吗?