我是IOS编程的新手。到目前为止,我一直在用 android 编程。所以在android中,当按下按钮传递参数时,代码会是这样的:
Intent i = new Intent(MainScreen.this,OtherScreen.class);
Bundle b = new Bundle();
b.putString("data_1",data);
i.putExtras(b);
startActivity(i);
在打开的活动中,我会写这样的东西:
Bundle b = getIntent().getExtras();
ski_center=b.getString("data_1");
我应该在 IOS 的 MainScreen 和 OtherScreen 中更改哪些方法才能实现上述目的。
基本上我将在我的 MainScreen 中有 3 个按钮,每个按钮都会打开 Otherview,但每次都会传递不同的参数。
每个按钮的敌人示例我在 MainScreen.m 中有这样的代码
@synthesize fl;
-(IBAction) ifl:(id) sender {
}
所以我也需要你的帮助来放置“丢失”的代码。