๊ธฐํ/iOS๐
๐ก๋ฌธ์ ์ํฉ 1. Section1์ ๋ฃ์ด์ค ์
์์๋๋ก ๊ตฌ๋ถ์ ์ด ์๊ธด๋ค 2. Section2์ Cell ์์ ๊ตฌ๋ถ์ ์ด ์๊ธด๋ค ๐ํด๊ฒฐ๋ฐฉ๋ฒ [ํ
์ด๋ธ๋ทฐ ๋ณ์๋ช
].separatorStyle = .none ๐ก์
์ ํด๋ฆญํ ๊ฒฝ์ฐ ๋ฌธ์ ์ํฉ 1. ์
์ ํด๋ฆญํ์๋ Section1 ๊ตฌ๋ถ์ ์ด ์๊ธด๋ค ๐ํด๊ฒฐ๋ฐฉ๋ฒ Section์์ Header์ Footer์์ ๊ตฌ๋ถ์ ์ด ์กด์ฌํ๊ธฐ ๋๋ฌธ์ ์๊ธฐ๋๊ฒ!! [ํ
์ด๋ธ๋ทฐ ์
].selectionStyle = .none ์ ์ฒด ํจ์ /// ์
์ง์ func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { guard let remindGoalTitleTVC = remindTV.deque..
๊ธฐํ/iOS๐
Tableview๊ฐ ์๋ ViewController๋ฅผ ์คํํ๋ ค๊ณ ํ๋, ์คํ์ด ๋์ง ์์๋ค. ์ค๋ฅ ์์ธ ํ
์ด๋ธ ๋ทฐ ์
ํ๋๊ฐ Autoresizing Mask๊ฐ ์ค์ ์ด ๋์ด์์๋ค!
๊ธฐํ/iOS๐
Unable to load contents of file list: '/Target Support Files/Pods-POME-iOS/Pods-POME-iOS-frameworks-Debug-input-files.xcfilelist' ์ค๋ฅ๊ฐ ๋ฐ์ํ๋ค. ์ด ๊ธ์ ์ฐธ๊ณ ํ์๋์๋ ํด๊ฒฐ์ด ๋์ง ์์๋ค!! https://minny27.tistory.com/41 [iOS / Error] Unable to load contents of file list... ์๋ฌ ํด๊ฒฐ ์ด์ ํฌ์คํฐ์์ ๋ฌธ์ ๋ฅผ ํด๊ฒฐํ๋ค๊ฐ ์๋ก์ด ์๋ฌ์ ๋ด์ฐฉํ์ต๋๋ค. ํด๋น ๋ฌธ์ ๋ Xcode 10.2์์ ๋ํดํธ๋ก ์ฌ์ฉ๋๋ ์๋ก์ด ๋น๋ ํ๋ก์ธ์ค์ ๊ด๋ จ๋ ์๋ฌ์
๋๋ค. ํด๋น ์๋ฌ๋ฅผ ํด๊ฒฐํด๋ณด๊ฒ ์ต๋๋ค. [Ste minny27.tistory.com M1 ์นฉ์ด Coco..
๊ธฐํ/iOS๐
๋์ ๋ฏธ์
1. ๋๊ทธ๋๊ฒ ๋ง๋ค์ด์ผํจ 2. padding ๊ฐ์ผ๋ก ๊ธ์จ leading, trailing์ 4์ ์ฌ๋ฐฑ์ ์ค์ผํจ 3. top, bottom ๋ 2 ์ ๋์ ์ฌ๋ฐฑ ์์ ๊ธ์จ๊ฐ ๋์ด๋ ๋๋ง๋ค, ๊ธ์จ๊ฐ ๋์ด๋ ์ ์๋๋ก! Label์ Padding ๊ฐ์ ์ค ์๋ ์๋ค!! ์ปค์คํ
ํด์ ๋ง๋ค์ด์ผํด์ฉ! BasePaddingLabel.swift ํ์ผ์ ์์ฑํด์ค๋ค. import UIKit class BasePaddingLabel: UILabel { private var padding = UIEdgeInsets(top: 2.0, left: 4.0, bottom: 2.0, right: 4.0) convenience init(padding: UIEdgeInsets) { self.init() self.padding = ..