基于 UILabel 的值推送视图控制器
我有一个带有 2 个组件的 pickerview,我有一个 3 按钮分段控件。根据用户在 pickerview 和分段控件之间选择的内容,我有一个显示字符串的 UILabel。我想根据 UILabel 中显示的内容推送视图控制器。我应该为此使用 switch 语句吗?如何将字符串值转换为整数表达式以使 switch 语句起作用?
switch (fooLabel.text) {
case @"foo-bar":
[self.navigationController pushViewController:exampleVC animated:YES];
break;
default:
break;
}
谢谢!
I have a pickerview with 2 components, I have a 3 button segmented control. Based on what the user selects between the pickerview and the segmented control, I have a UILabel that displays a string. I would like to push a view controller based on what is displayed in the UILabel. Should I use a switch statement for this? How do I convert the string values into integer expressions for the switch statement to work?
switch (fooLabel.text) {
case @"foo-bar":
[self.navigationController pushViewController:exampleVC animated:YES];
break;
default:
break;
}
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用多个 if 语句
just use multiple if statements