OGeek|极客世界-中国程序员成长平台

标题: ios - 动态创建表单取决于服务器的响应 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 15:01
标题: ios - 动态创建表单取决于服务器的响应

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

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

所以现在我正在寻找能够做到这一点的框架。由于我也将在其他应用程序中实现它,因此它需要是通用的。有没有其他方法可以处理它?



Best Answer-推荐答案


您可以自己尝试一下,如果您有任何问题,这将更容易实现和调试。使用任何已经构建的框架/库都不会为您提供您可能需要的灵 active 。

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

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

您可以像以下函数一样逐一迭代它们:

- (void)setFieldOnScreenField *)f { // Field is a model class that suits your requirement

    if (f.type isEqualToString"UITextField"]) {

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

        UITextField *txtField = [[UITextField alloc] 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
    }
}   

关于ios - 动态创建表单取决于服务器的响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42688315/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (https://ogeek.cn/) Powered by Discuz! X3.4