テキストビューにコメントを入力し、コメントするボタンを押すと、
投稿者名が格納されているnameとコメントが格納されているcommentを
PostDataクラスの配列に追加したいのですが、
postArray.append()の()の中身はどのように記述すれば良いのかわからず困ってます。
私が認識している配列の追加は以下のやり方のみです。
var value: [Int] = [10, 20, 30] value.append(40)
PostData
1import UIKit 2import Firebase 3 4class PostData: NSObject { 5 var id: String 6 var name: String? 7 var caption: String? 8 var date: Date? 9 var comment: [String] = [] 10 var isComment: Bool = false 11 var likes: [String] = [] 12 var isLiked: Bool = false 13 14 init(document: QueryDocumentSnapshot) { 15 self.id = document.documentID 16 let postDic = document.data() 17 self.name = postDic["name"] as? String 18 self.caption = postDic["caption"] as? String 19 let timestamp = postDic["date"] as? Timestamp 20 self.date = timestamp?.dateValue() 21 if let comment = postDic["comment"] as? [String] { 22 self.comment = comment 23 } 24 if let myid = Auth.auth().currentUser?.uid { 25 if self.comment.firstIndex(of: myid) != nil { 26 self.isComment = true 27 } 28 } 29 if let likes = postDic["likes"] as? [String] { 30 self.likes = likes 31 } 32 if let myid = Auth.auth().currentUser?.uid { 33 if self.likes.firstIndex(of: myid) != nil { 34 self.isLiked = true 35 } 36 } 37 } 38}
swift
1 var postArray: [PostData] = [] 2 3 @IBOutlet weak var commentTextView: UITextView! 4 5 @IBAction func handleCommentButton(_ sender: Any) { 6 if let comment = commentTextView.text { 7 if comment.isEmpty { 8 SVProgressHUD.showError(withStatus: "コメントを入力して下さい。") 9 return 10 } 11 if let name = Auth.auth().currentUser?.displayName { 12 postArray.append() 13 } else { 14 SVProgressHUD.showError(withStatus: "表示名を登録して下さい。") 15 } 16 } 17 SVProgressHUD.showSuccess(withStatus: "コメントしました。") 18 self.dismiss(animated: true, completion: nil) 19 }
PostData オブジェクトを生成して、それを配列に append すれば良いのでは。
あなたの回答
tips
プレビュー