时间:2010-07-26 03:08:03

标签: objective-c xcode mkmapview subview

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

只需将此代码放入您的按钮操作中并根据需要更改

YourViewControler *yourViewControler = [[YourViewControler alloc]            initWithNibName :@"YourViewControler" bundle:nil];

[self.navigationController pushViewController:yourViewControler animated:NO];

[yourViewControler release];

您可以在YourViewControler中添加任何内容。

我希望它会对你有所帮助。