這是我們如何處理他們在XCode
:德爾福 - 應用程序運行時處理推送通知?
- (void)application:(UIApplication *)application
didReceiveRemoteNotification:(NSDictionary *)userInfo
{
NSString *message = nil;
id alert = [userInfo objectForKey:@"alert"];
if ([alert isKindOfClass:[NSString class]]) {
message = alert;
} else if ([alert isKindOfClass:[NSDictionary class]]) {
message = [alert objectForKey:@"body"];
}
if (alert) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Title"
message:@"AThe message." delegate:self
cancelButtonTitle:@"button 1"
otherButtonTitles:@"button", nil];
[alertView show];
[alertView release];
}
我們如何趕上推送通知,如果iOS
應用在以同樣的方式已經運行,但使用Delphi 10 Seattle
?
你應該改變你的問題的標題包括德爾福10西雅圖。它目前太過誤導 – Gruntcakes
@SausageMachine完成了。我將把它作爲Delphi離開,所以它不會侷限於它的最後一個版本。 – Machado
@SausageMachine,這就是標籤的用途。 – Johan