将图像和文本添加到表格视图
我尝试将从文本字段中获取的一些文本和从相册中获取的图像添加到 UITableViewCell
中。
在一个 UIViewController
中,我有一个 UITextField
和一个 UIImageView
。这是我用来的代码 填充我将在 UITableView
的单元格中呈现的产品数组。
Article *article1 = [[Article alloc] initWithTitle: @"First Text" Subtitle: @"Data&Time" Thumbnail: [UIImage imageNamed: @"image.png"]];
articles = [[NSMutableArray alloc] init];
[articles addObject:article1];
I try to add some text taken from a textfield and an image taken from photo album to UITableViewCell
.
In one UIViewController
I have a UITextField
and a UIImageView
. This is the code I use to
populate an array of products that I would present in cells of a UITableView
.
Article *article1 = [[Article alloc] initWithTitle: @"First Text" Subtitle: @"Data&Time" Thumbnail: [UIImage imageNamed: @"image.png"]];
articles = [[NSMutableArray alloc] init];
[articles addObject:article1];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您希望单元格显示 Article 对象的属性吗?假设您只有一个部分,并且您的 UITableViewController 已经引用了一组名为“articles”的文章。
Do you want the cells to display the properties of your Article objects? Let's assume you only have one section and your UITableViewController already has a reference to an array of Articles called "articles".
添加自定义单元格以将图像显示到表格视图
ADD a custom cell to display image to the table view