我希望在0索引处以及此后每三个单元格后添加一个广告单元格。我成功地添加了第一个,但不确定如何处理。
两个广告都只拍摄一张图片。
我当前的代码如下:
var adCount = 1
var newsTitleArray : [String] = ["News1"]
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return newsTitleArray.count + adCount
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if indexPath.row == 0 {
let cell = tableView.dequeueReusableCell(withIdentifier: "BannerTableViewCell") as! BannerTableViewCell
cell.adImageView.image = UIImage(named:"Logo")
NewsTableView.rowHeight = 50
return cell
} else {
let cell = tableView.dequeueReusableCell(withIdentifier: "NewsTableViewCell") as! NewsTableViewCell
cell.newsTitle.text = newsTitleArray[indexPath.row - 1]
cell.newsSubTitle.text = newsSubTitleArray[indexPath.row - 1]
cell.newsDate.text = newsDateArray[indexPath.row - 1]
cell.newsImageView.image = UIImage(named: randomPicArray[indexPath.row - 1])
cell.selectionStyle = .none
NewsTableView.rowHeight = 500
return cell
}
}
检查索引以显示特定内容是不好的做法。使用所需类型更新数据源。在这种情况下,使用包含News&广告对象。
enum ContentType {
case news
case ad
}
struct NewsContent {
let type: ContentType = .news
let title: String
//More if needed
}
struct AdContent {
let type: ContentType = .ad
let title: String
//More if needed
}
let dataSource = [AdContent, NewsContent, NewsContent, NewsContent, AdContent, ...]
您可以使用此框架创建多种内容类型。这也简化了访问数据的方式。就像在numberOfRowsInSection
中一样,您不需要执行newsContent + ad
,您只需返回dataSource.count
即可。这种方法很容易阅读&维持
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return dataSource.count
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
let content = dataSource[indexPath.row]
let height: CGFloat?
switch content.type {
case .news:
height = 500
case .ad:
height = 50
}
return height ?? 500 // return default
}
现在根据内容类型返回/更新单元格
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let content = dataSource[indexPath.row]
let cell: UITableViewCell?
switch content.type {
case .news:
cell = tableView.dequeueReusableCell(withIdentifier: "NewsTableViewCell") as? NewsTableViewCell
cell?.newsTitle.text = newsTitleArray[indexPath.row - 1]
cell?.newsSubTitle.text = newsSubTitleArray[indexPath.row - 1]
cell?.newsDate.text = newsDateArray[indexPath.row - 1]
cell?.newsImageView.image = UIImage(named: randomPicArray[indexPath.row - 1])
cell?.selectionStyle = .none
case .ad:
cell = tableView.dequeueReusableCell(withIdentifier: "BannerTableViewCell") as? BannerTableViewCell
cell?.adImageView.image = UIImage(named:"Logo")
}
return cell ?? UITableViewCell()
}