更改仪表板代码中后退按钮上的文本。我该把这段代码放在哪里?
这可能是一个非常简单的问题,但我正在使用 dashcode,无法弄清楚在哪里放置此代码来更改后退按钮的文本。
self.navigationItem.backBarButtonItem =
[[[UIBarButtonItem alloc] initWithTitle:@"Back"
style: UIBarButtonItemStyleBordered
target:nil
action:nil] autorelease];
This is probably a very simple question, but I'm working with dashcode and can't figure out where to put this code to change the text of the back button.
self.navigationItem.backBarButtonItem =
[[[UIBarButtonItem alloc] initWithTitle:@"Back"
style: UIBarButtonItemStyleBordered
target:nil
action:nil] autorelease];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Dashcode 是 Apple 为基于 Web 的开发(Javascript/HTML/CSS)提供的开发工具。
您粘贴的代码是 Objective-C 代码,用于使用 XCode 进行本机开发。
因此,要么您使用了错误的工具,要么使用了错误的语言。 HTH。
Dashcode is the development tool that Apple has provided for web based development (Javascript/HTML/CSS).
The code you have pasted is Objective-C code which is used in native development with XCode.
So, either you have the wrong tool, or are using the wrong language. HTH.