1

TableViewControllermyを にサブクラス化することで、facebook や twitter のようなニュース フィードを作成しましたPFQueryTableViewController。誰かがフィードにメッセージを投稿した正確な時刻をユーザーに確認してもらいたいのですが、コードがPFTableViewCell正しく記述されていません。基本的に、Parse から日付 (または "createdAt"") を取得したいのですが、Parse を介して投稿されたユーザーの時間を表示できます。 ?

これが私のコードです。

    override func tableView(tableView: UITableView?, cellForRowAtIndexPath indexPath: NSIndexPath?, object: PFObject!) -> PFTableViewCell? {
       let cell = tableView!.dequeueReusableCellWithIdentifier("BCell", forIndexPath: indexPath!) as! Post


    if let userPost : PFObject = self.posts.objectAtIndex(indexPath!.row) as! PFObject {

    cell.account.text = object["username"] as? String
    cell.tweet.text = object["message"] as? String
    cell.Time.text = "\((indexPath!.row + 1) * 3)m"
    cell.tweet.numberOfLines = 0
    let score = object[("count")] as! Int
    cell.favoriteCount.text = "\(score)"
    let replycnt = object["replies"] as! Int
    cell.replyCount.text = "\(replycnt) replies"
        if let profilePic = object["photo"] as? PFFile {
            cell.userImage.image = UIImage(named: "profileImage")
            //cell.userImage.file = profilePic
        }

        }
4

1 に答える 1

1

私はそれを考え出した!

以下は私のコードです:

 let dateUpdated = object.createdAt! as NSDate
let dateFormat = NSDateFormatter()
dateFormat.dateFormat = "MMM d, h:mm a"

cell.Time.text =  NSString(format: "%@", dateFormat.stringFromDate(dateUpdated)) as String
于 2015-10-31T17:49:28.340 に答える