gpt4 book ai didi

ios - iPhone : How to implement android AlertDialog like functionality?

转载 作者:行者123 更新时间:2023-11-28 22:58:34 28 4
gpt4 key购买 nike

我正在尝试在 iphone 中实现功能以在 AlertView 中显示表格,并在点击表格时填充父 View 上的一些控件。

在 Android 中,我们可以通过 AlertDialog 做到这一点,但在 Iphone 中,我用谷歌搜索但没有找到实现这个东西的建议。

下面是Android代码,但是如何通过IOS做到这一点

   new AlertDialog.Builder(MakeReservation.this).setTitle("Previous Locations").setItems(locArray, new DialogInterface.OnClickListener() {

@Override
public void onClick(DialogInterface dialog, int which) {
String str = locArray[which];
if (str.contains(",")) {
String[] Address = str.split(",");
// String[] PickAddress = "Snoufer School, Gaithersburg, MD 45123".split(",");
if (Address.length > 0)
pickUpStreet.setText(Address[0]);

for (int i = 0; i < getResources().getStringArray(R.array.state_symbols).length; i++)
if (getResources().getStringArray(R.array.state_symbols)[i].equals(getStateCity[0])) {
pos = i;
break;
}

pickUpState.setSelection(pos);
}
if (getStateCity.length > 1)
pickUpZip.setText(getStateCity[1]);
}

}
}
}).create().show();

最佳答案

我不知道它如何在 android 中显示您寻求的警报对话框。但我猜你正在寻找这样的东西 Image1 Image2 .

UITableView with Section-Header inside UIAlertView enter image description here

关于ios - iPhone : How to implement android AlertDialog like functionality?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10363146/

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