2012-12-24 65 views

回答

1

如果你談論的是在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」關閉該按鈕標題它和標題「公告」。

+0

感謝您的回覆,我需要顯示像在短信預覽彈出。打電話給我湯姆 – user1455465

+0

1)你不是很清楚 - 請清楚地定義你想要的2)「電話給我湯姆」 - 禮貌走了很長的路 –