【发布时间】:2017-04-20 04:15:29
【问题描述】:
{
Flows = (
flow456
);
flow456 = (
format789,
format123
);
format123 = {
row1 = {
label = Price;
textbox = {
height = 111;
width = 333;
};
};
row2 = {
button = yes;
};
};
format123Rows = (
row1,
row2
);
format789 = {
row1 = {
label = Price;
textbox = {
height = 111;
width = 333;
};
};
row2 = {
button = yes;
};
};
format789Rows = (
row1,
row2
);
}
上面是我想在 iphone 屏幕上显示的 json 对象。在屏幕上显示数据的最佳布局是什么?我尝试过 UIView、UIStackView 但无法做到。如何按行显示它? 如图Click here to see image
【问题讨论】:
标签: ios objective-c iphone json