gpt4 book ai didi

iphone - iPhone monotuch 中带有可选项目的警报 View

转载 作者:行者123 更新时间:2023-11-29 13:11:00 26 4
gpt4 key购买 nike

在 android 中,我们可以有一个警告对话框,其中包含如下图所示的项目列表:

enter image description here

但对于 iPhone 情况,我们如何创建这样的警报 View ?

最佳答案

您需要使用代理名称和电话属性创建 MyCustomAlertViewController。创建 xib 。之后这样写:

- (void) alertForAgentName: (NSString*) anAgentName agentPhoneNumber: (NSString*) anAgentPhoneNumber
{
MyCustomAlertViewController* modalViewController =
[[MyCustomAlertViewController alloc] initWithNibName: @"MyCustomAlertViewController" bundle:nil];

modalViewController.agentName = anAgentName;
modalViewController.agentPhoneNumber = anAgentPhoneNumber;

UINavigationController *modalViewNavController =
[[UINavigationController alloc]
initWithRootViewController: modalViewController];

[self.navigationController presentModalViewController:
modalViewNavController animated:YES];
// If MRC
[modalViewNavController release];
}

对于关闭对话框,您需要像这样调用(它在 MyCustomAlertViewController 类中):

- (IBAction) dismissModalView:(id)sender
{
[self.parentViewController dismissModalViewControllerAnimated:NO];
}

关于iphone - iPhone monotuch 中带有可选项目的警报 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17377002/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com