我正在开发基于会议的应用程序。我想向用户显示来电窗口,我正在使用 UIActionSheet 来显示该通知。现在,这里的问题是呼叫可能随时来自服务器,此时我们可能在我们的应用程序中的任何视图中,如何使用 UIActionSheet 显示来电通知?我必须设置什么代表?
UIActionSheet *actionSheet = [[UIActionSheet alloc]
initWithTitle:msg_string
delegate:(id)??????????????????
cancelButtonTitle:@"ACCEPT"
destructiveButtonTitle:@"DECLINE"
otherButtonTitles: nil];
非常感谢任何建议。谢谢。