我需要在我的應用程序中實現推送通知。 其實我必須從服務器接收消息。 請引導我如何在我的iPhone應用程序中實現推送通知。Iphone應用程序中的推送通知
回答
你需要在你的應用程序
- (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)devToken {
//NSLog(@"Entered into Method");
NSString *myDevTokenString = [devToken description];
NSLog(myDevTokenString);
self.tokenAsString = [[devToken description] stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"<>"]];
NSLog(@"token As String:%@", tokenAsString);
//const void *devTokenBytes = [devToken bytes];
//NSLog(@"My Token is : %@",devToken);
//self.registered = YES;
// UIAlertView *myAlert = [[UIAlertView alloc] initWithTitle:@"APNClient-GotToken" message:myDevTokenString delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
// [myAlert show];
// [myAlert release];
//[self sendProviderDeviceToken:devTokenBytes]; // custom method
}
- (void)application:(UIApplication *)app didFailToRegisterForRemoteNotificationsWithError:(NSError *)err {
//UIAlertView *myAlert = [[UIAlertView alloc] initWithTitle:@"APNClient" message:@"called -Error- Method" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
// [myAlert show];
// [myAlert release];
NSString *errText = [[NSString alloc] initWithFormat:@"APN Error:%@",err];
NSLog(@"Error in registration. Error: %@", errText);
}
有沒有別的東西我想do.just問,因爲我已經在iPhone應用ABT豪華通知沒有詳細的想法 – 2010-04-01 11:40:33
在客戶端沒有什麼... – 2010-04-01 12:20:36
一件事您需要使用推送通知啓用提供配置文件來構建您的應用 – 2011-01-25 05:32:28
客戶端的東西很容易實現這兩個委託方法,但如果你想有一個很好的例子,我們提供一個可以下載的http://bitbucket.org/urbanairship/push_sample/
你」我發現服務器端的東西要困難得多,因此我會推薦使用Urban Airship,因爲我們提供了一個簡單的RESTful服務,您可以使用大量的附加功能,而獨立軟件包是免費的。
http://urbanairship.com/docs/push_index.html
警告:我在那裏工作。
- 1. 推送iPhone應用程序的通知
- 2. iPhone應用程序推送通知
- 3. iPhone推送通知程序
- 4. 我想用推送通知我的應用程序的IPhone
- 5. Android應用程序的推送通知
- 6. 通用iPhone推送應用程序
- 7. 我如何在iphone應用程序中推送通知?
- 8. iPhone應用程序用於測試Firebase的推送通知
- 9. Facebook的聊天在iPhone應用程序使用推送通知
- 10. iPhone推送通知的Web應用程序?
- 11. iPhone推送通知不Rails應用程序的工作 - apn_sender
- 12. 註冊iPhone應用程序推送通知不起作用
- 13. 應用程序更新推送通知
- 14. 從應用程序推送通知
- 15. 推送通知web應用程序
- 16. 發佈推送通知應用程序
- 17. 網絡應用程序推送通知
- 18. 鈦推送通知Android應用程序
- 19. 離子推送通知應用程序
- 20. iOS應用程序推送通知
- 21. 推送通知應用程序
- 22. iPhone推送通知
- 23. 推送通知?Iphone
- 24. iPhone推送通知
- 25. 推送通知iPhone
- 26. iPhone - 推送通知
- 27. 推送通知不適用於應用程序商店應用程序 - iphone
- 28. 推送通知提醒打開iPhone時解鎖應用程序
- 29. 退出iPhone應用程序後推送通知
- 30. 如何從iPhone應用程序測試Apple推送通知?
不要忘了接受的答案,幫助你 – 2011-05-24 05:46:06