gpt4 book ai didi

ios - 如何在 iOS 的 tableView 上添加 imageView

转载 作者:行者123 更新时间:2023-11-29 02:06:18 25 4
gpt4 key购买 nike

我正在开发 iOS 应用程序。

我想将 UIImageView 添加到 UITableView

我正在写下以下代码,但是UIImageView位于UITableView后面。

可能我认为加载UITableView数据后,[self.view bringSubviewToFront:self.imageView];应该被实现,但是我不知道该怎么做。

你能告诉我解决方案吗?

@property (strong,nonatomic) UIImageView *imageView;
@property (weak, nonatomic) IBOutlet UITableView *tableView;

- (void)viewDidLoad
{
self.imageView = [[UIImageView alloc] initWithFrame:CGRectMake(240,100,77,77)];
self.imageView.image = [UIImage imageNamed:@"hoge"];
[self.view addSubview:self.imageView];
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection: (NSInteger)section
{
return 100;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

{
// Usual TableViewCell process
}

最佳答案

如果你想为带有 ImageView 的tableview设置背景,你可以在viewDidLoad中设置:

 UIImage *image = [UIImage imageNamed:@"image.png"];
self.tableView.backgroundView = [[UIImageView alloc]initWithImage:image];

关于ios - 如何在 iOS 的 tableView 上添加 imageView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29755204/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com