菜鸟教程小白 发表于 2022-12-13 15:01:21

ios - 动态创建表单取决于服务器的响应


                                            <p><p>我正在开发一个应用程序,其中 UI 呈现将取决于服务器发送的 <code>JSON</code>。 </p>

<p>服务器将决定 UI 组件,我实际上已经为 <code>UILabel</code>、<code>UITextField</code> 等基本组件创建了扩展类,但这似乎是一个非常冗长和复杂的过程. </p>

<p>所以现在我正在寻找能够做到这一点的框架。由于我也将在其他应用程序中实现它,因此它需要是通用的。有没有其他方法可以处理它? </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以自己尝试一下,如果您有任何问题,这将更容易实现和调试。使用任何已经构建的框架/库都不会为您提供您可能需要的灵 active 。</p>

<p>假设您有一个函数可以解析 JSON 并决定它是否是 textfield/button/label/textview 等等...(它可以是响应中的字段数组中的属性之一)。</p>

<p>创建一个自定义模型类,例如 <code>Field</code>,在该类中,您可以将与要放在屏幕上的字段相关的所有详细信息;比如 X、Y、Width、Height、Numeric、Alphanumeric 等等……这所有的值都需要从你从 API 获得的 JSON 响应中解析出来。</p>

<p>您可以像以下函数一样逐一迭代它们:</p>

<pre><code>- (void)setFieldOnScreen:(Field *)f { // Field is a model class that suits your requirement

    if (f.type isEqualToString:@&#34;UITextField&#34;]) {

      float x = f.x.floatValue;
      float y = f.y.floatValue;
      float width = f.width.floatValue;
      float height = f.height.floatValue;      

      UITextField *txtField = [ initWithFrame:CGRectMake(x, y, width, height)];
      txtField.delegate = self;
      txtField.font = f.font_name; // from repsonse
      txtField.tag = f.tag.integerValue; // from response
      txtField.textAlignment = f.alignment //NSTextAlignmentLeft or whatever from response

      // even you can fill up preset values in it from response
      txtField.text = f.presetvalue;

            ... and so on....

      } else if ... /// for UILabel/UIButton/UISwitch or any other subclass of the controls
    }
}   
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 动态创建表单取决于服务器的响应,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/42688315/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/42688315/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 动态创建表单取决于服务器的响应