如何设计像健康应用程序中的添加新条目屏幕?
How to design a add new entry screen like in the Health app?
我正在创建我的第一个应用程序,我想设计一个 "add a new item" 模式,就像在健康应用程序中一样:
这里我有三个问题:
- 3个输入框是如何设计的,让你一直在左边看到提示,在右边看到输入?这只是一个字段吗?
- 这3个字段通常存储在tableView中吗?
- 日期条目是特殊键盘类型还是 DatePicker?
看起来像 UITableView with a custom cell which has a UILabel on the left and an input field on the right. The picker is a UIDatePicker
我正在创建我的第一个应用程序,我想设计一个 "add a new item" 模式,就像在健康应用程序中一样:
这里我有三个问题:
- 3个输入框是如何设计的,让你一直在左边看到提示,在右边看到输入?这只是一个字段吗?
- 这3个字段通常存储在tableView中吗?
- 日期条目是特殊键盘类型还是 DatePicker?
看起来像 UITableView with a custom cell which has a UILabel on the left and an input field on the right. The picker is a UIDatePicker