要进行高级 A/B 测试,我希望能够基于配置文件创建 segue。
在启动时,我的应用会下载一个 JSON 文件,其中包含动态创建主页部分的信息。
例如,如下所示的 JSON 将在主视图上创建 2 个按钮。第一个是蓝色的,标签为“button1”,第二个是红色,标签为“button2”。
{
"elements":
"0": {
"type": "button",
"label": "button1"
"color": "blue"
},
"1": {
"type": "button",
"label": "button2"
"color": "red"
}
};
现在,我想在 JSON 中添加类似的内容:"goto": "OptionViewController"
其中 goto 键的值是单击按钮时显示的 View 。
我希望能够添加或删除主页面的按钮(我知道如何做到这一点)并远程更改链接到按钮的 View (这是我的问题),只需更改下载的 JSON。
问题在于,从一个 View 移动到另一个 View ,我不仅需要新 View 的名称,还需要 segue。
This post说以编程方式创建 segue 是不可能的。
我找到的唯一解决方案是为每个 View 创建一个与其他所有 View 的 segue,但这很脏。
如果您正在使用 Storyboard,并且如果您想要转入的 View Controller 已在其中定义,并且标识符为“Option ViewController”,那么您可以这样做:
UIStoryboard* storyboard = [UIStoryboard storyboardWithName“Main” bundle:nil];
OptionViewController *ovc = [storyboard instantiateViewControllerWithIdentifier“OptionViewController”];
[self presentViewControllervc
animated:YES
completion:nil];
关于ios - 根据下载的配置文件创建 segue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23489939/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://ogeek.cn/) | Powered by Discuz! X3.4 |