我正在尝试在 iphone 中实现功能以在 AlertView 中显示表格,并在单击表格时填充父视图的一些控件。
在 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();