只要显示帖子,就会调用the_post操作。主页/帖子加载时最好使用哪些操作?
由于
答案 0 :(得分:0)
主页没有特定的操作,但根据您的需要,您可以挂钩public func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
var storeNew = systemsBlog.getStore(listNews[indexPath.row].getIdStore())
var newNotice = listNews[indexPath.row]
let cell = tableView.dequeueReusableCellWithIdentifier("TimelineCell", forIndexPath: indexPath) as? TimelineCell
cell!.nameLabel.text = storeNew.getName()
cell!.postLabel?.text = newNotice.getText()
cell!.postLabel?.numberOfLines = 0
cell!.dateLabel.text = newNotice.getDate()
cell!.typeImageView?.tag = indexPath.row;
return cell!
}
class TimelineCell : UITableViewCell {
@IBOutlet var nameLabel : UILabel!
@IBOutlet var postLabel : UILabel?
@IBOutlet var dateLabel : UILabel!
override func awakeFromNib() {
postLabel?.font = UIFont(name: "Roboto-Thin", size: 14)
}
override func layoutSubviews() {
super.layoutSubviews()
}
并调用函数is_home
或the_post
以确定当前是否正在查看主页面
列出了可用的操作here。根据您对主页的要求以及何时,您可以挂钩is_front_page
,或者可能the_post
,wp
,wp_head
来检查主页面如果满足该条件,则运行您的代码。