From 98d778d22c36c39bf076aeed646dd6ab1c99068d Mon Sep 17 00:00:00 2001 From: JuneBuug Date: Wed, 30 Aug 2017 14:28:45 +0900 Subject: [PATCH] =?UTF-8?q?170830=20#207=20=EC=83=81=ED=92=88=EC=83=81?= =?UTF-8?q?=EC=84=B8=EC=97=90=EB=8F=84=20=EC=B9=B4=EC=B9=B4=EC=98=A4?= =?UTF-8?q?=ED=86=A1=20=EA=B3=B5=EC=9C=A0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pyunrihae/Base.lproj/Main.storyboard | 70 +++++++++++-------- .../ProductReviewTableViewCell.swift | 6 ++ 2 files changed, 48 insertions(+), 28 deletions(-) diff --git a/iOSProject/pyunrihae/pyunrihae/Base.lproj/Main.storyboard b/iOSProject/pyunrihae/pyunrihae/Base.lproj/Main.storyboard index 7b3d4cba..f2275168 100644 --- a/iOSProject/pyunrihae/pyunrihae/Base.lproj/Main.storyboard +++ b/iOSProject/pyunrihae/pyunrihae/Base.lproj/Main.storyboard @@ -17,7 +17,7 @@ - + @@ -47,7 +47,7 @@ - + @@ -99,7 +99,7 @@ - + @@ -112,7 +112,7 @@ - + @@ -472,7 +472,7 @@ - + @@ -485,7 +485,7 @@ - + @@ -682,7 +682,7 @@ - + @@ -720,7 +720,7 @@ - + @@ -736,7 +736,7 @@ - + @@ -852,7 +852,7 @@ - + @@ -984,7 +984,7 @@ - + @@ -1099,6 +1099,17 @@ + @@ -1119,10 +1130,12 @@ + + @@ -1245,7 +1258,7 @@ - + @@ -1314,7 +1327,7 @@ - + @@ -1631,7 +1644,7 @@ - + @@ -1663,7 +1676,7 @@ - + @@ -1676,7 +1689,7 @@ - + @@ -1749,7 +1762,7 @@ - + @@ -1892,7 +1905,7 @@ - + @@ -2107,7 +2120,7 @@ - + @@ -2202,7 +2215,7 @@ - + @@ -2211,7 +2224,7 @@ - + @@ -2239,7 +2252,7 @@ - + @@ -2460,7 +2473,7 @@ - + @@ -2476,7 +2489,7 @@ - + @@ -2602,7 +2615,7 @@ - + @@ -2695,7 +2708,7 @@ - + @@ -2802,7 +2815,7 @@ - + @@ -2815,7 +2828,7 @@ - + @@ -2942,6 +2955,7 @@ + diff --git a/iOSProject/pyunrihae/pyunrihae/ProductReviewTableViewCell.swift b/iOSProject/pyunrihae/pyunrihae/ProductReviewTableViewCell.swift index be4905d7..c4939166 100644 --- a/iOSProject/pyunrihae/pyunrihae/ProductReviewTableViewCell.swift +++ b/iOSProject/pyunrihae/pyunrihae/ProductReviewTableViewCell.swift @@ -20,6 +20,8 @@ class ProductReviewTableViewCell: UITableViewCell { @IBOutlet weak var userImage: UIImageView! @IBOutlet weak var uploadedFoodImageBtn: UIButton! @IBOutlet weak var detailReviewLabel: UILabel! + var review : Review = Review() + override func awakeFromNib() { super.awakeFromNib() } @@ -27,6 +29,7 @@ class ProductReviewTableViewCell: UITableViewCell { super.setSelected(selected, animated: animated) } func setCellValue(review: Review, reviewList: [Review]) { + self.review = review self.userNameLabel.text = "" self.detailReviewLabel.text = "" self.userImage.image = UIImage(named: "user_default.png") @@ -109,4 +112,7 @@ class ProductReviewTableViewCell: UITableViewCell { } } } + @IBAction func kakaoShare(_ sender: Any) { + DataManager.sendLinkFeed(review: self.review) + } }