菜鸟教程小白 发表于 2022-12-13 09:15:03

ios - 相同的 View Controller UI,不同的功能


                                            <p><p>我有一个 ViewController ,其 UI 在 2 个类之间是相同的,但功能不同。其中一个类使用 ViewController 添加联系人,另一个使用它来编辑联系人。</p>

<p>有没有办法在拥有不同类(添加/编辑类)的同时“重用” ViewController 的布局/ View ?</p>

<pre><code>- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    if () {
      UINavigationController *navigationController = segue.destinationViewController;
      AddContact *addContact = (AddContact *)navigationController.viewControllers.firstObject;
      addContact.delegate = self;
    }
    else if () {
      EditContact *editContact = (EditContact *)segue.destinationViewController;
      editContact.currentContact = row]];
    }
}
</code></pre>

<p><code>segue.destinationViewController</code> 属于 <code>ViewContact</code> 类型,<code>AddContact</code> 和 <code>EditContact</code> 都继承自该类型。它所做的一切都保留了它的两个 child 都使用的文本字段的导出。 </p>

<p>不幸的是,上面的代码段不起作用,因为您不能真正将 parent 类型转换为他们的 child 。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我通常做的是创建一个包含 xib 的单个 ViewController ,并添加如下属性:</p>

<p><strong>头文件</strong></p>

<pre><code>typedef NS_ENUM(NSUInteger, CRUD) { //Create, Read, Update, Delete
    CTCreate,
    CTRead

};

@property ( assign, readonly ) CRUD option;
</code></pre>

<p>在这个 ViewController 的初始化中,你会有类似的东西:</p>

<p><strong>标题</strong></p>

<pre><code>- (id)initWithOption:(CRUD)optionValue;
</code></pre>

<p><strong>实现</strong></p>

<pre><code>- (id)initWithOption:(CRUD)optionValue {
    ...
    option = optionValue;

    return self;

}
</code></pre>

<p>在这个类的实现中,你会有 if 语句的不同之处,比如当用户点击保存时,这个类是否应该插入新记录、添加或更新记录、编辑</p>

<p>希望这会有所帮助 :) 随时要求更多说明 :)p</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 相同的 ViewControllerUI,不同的功能,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31636787/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31636787/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 相同的 View Controller UI,不同的功能