Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建一个应用程序,在该应用程序中,我陷入了需要做一些事情的位置,比如在 Facebook 上评论照片。
顶部应该有图像,我们可以在下部添加评论。现在,我的问题是如何实现这一点 - 我想我有两个选择 - 1.使用自定义 UIView 并继续增加 Uiview。2. 使用表格视图。
任何想法,我们如何才能实现这一目标。
绝对是一个UITableViewUITableViewCell带有图片的自定义,每个不同的文本(名称,评论,时间等)都有UIImageView一些UILabels。然后你需要能够计算每一行的高度
UITableView
UITableViewCell
UIImageView
UILabels
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
用户输入新评论的最底部应该是带有 aUIButton和 a的单独视图UITextField
UIButton
UITextField