-2
如何顯示消息「哪些帳戶將從這些最佳實踐中受益最大?想想,添加客戶名稱並自我增壓!」像彈出式顯示?如何在圖像中顯示信息消息
如何顯示消息「哪些帳戶將從這些最佳實踐中受益最大?想想,添加客戶名稱並自我增壓!」像彈出式顯示?如何在圖像中顯示信息消息
如果你談論的是在iOS SDK中彈出,你會想:
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle: @"Announcement"
message: @"Which accounts will benefit the most from these best practices? Think,add customer names and supercharge yourself!"
delegate: nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
// Show the popup
[alert show];
對於一個有你指定的消息,和「OK」關閉該按鈕標題它和標題「公告」。
感謝您的回覆,我需要顯示像在短信預覽彈出。打電話給我湯姆 – user1455465
1)你不是很清楚 - 請清楚地定義你想要的2)「電話給我湯姆」 - 禮貌走了很長的路 –