-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feat/#10] โจ Add Subscribe Youtuber Conatiner
##### ์ ๋ชฉ์ ์ต๋ 50 ๊ธ์๊น์ง๋ง ์ ๋ ฅ ############## -> | # ๋ณธ๋ฌธ์ ์์ ์์ฑ ######## ๋ณธ๋ฌธ์ ํ ์ค์ ์ต๋ 72 ๊ธ์๊น์ง๋ง ์ ๋ ฅ ########################### -> | # ๊ผฌ๋ฆฟ๋ง์ ์๋์ ์์ฑ: ex) #์ด์ ๋ฒํธ # --- COMMIT END --- # <ํ์ > ๋ฆฌ์คํธ # feat sparkles : ๊ธฐ๋ฅ(์๋ก์ด ๊ธฐ๋ฅ) # fix beetle : ๋ฒ๊ทธ(๋ฒ๊ทธ ์์ ) # refactor hammer : refacetor ๋ฆฌํฉํ ๋ง # style art : ์คํ์ผ( ์ฝ๋ ํ์ ๋ณ๊ฒฝ, ๋ก์ง ๋ณ๊ฒฝ ์์) # doc pencil : ๋ฌธ์(๋ฌธ์ ์ถ๊ฐ, ์์ , ์ญ์ ) # test white_check_mark : ํ ์คํธ ์ฝ๋ ์ถ๊ฐ # chore moyai : ๊ธฐํ ๋ณ๊ฒฝ์ฌํญ # ------------------ # ์ ๋ชฉ ์ฒซ ๊ธ์๋ฅผ ๋๋ฌธ์๋ก # ์ ๋ชฉ์ ๋ช ๋ น๋ฌธ์ผ๋ก # ์ ๋ชฉ ๋์ ๋ง์นจํ(.) ๊ธ์ง # ์ ๋ชฉ๊ณผ ๋ณธ๋ฌธ์ ํ ์ค ๋์ ๋ถ๋ฆฌํ๊ธฐ # ๋ณธ๋ฌธ์ "์ด๋ป๊ฒ" ๋ณด๋ค "๋ฌด์์", "์"๋ฅผ ์ค๋ช ํ๋ค. # ๋ณธ๋ฌธ์ ์ฌ๋ฌ์ค์ ๋ฉ์์ง๋ฅผ ์์ฑํ ๋ "-"๋ก ๊ตฌ๋ถ # ------------------
- Loading branch information
1 parent
c3f6906
commit e8ba6f1
Showing
18 changed files
with
654 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+59.3 KB
(240%)
...pt_29th_Assignment.xcworkspace/xcuserdata/kone.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
sopt_29th_Assignment/sopt_29th_Assignment/Global/Protocols/UITableViewRegistable.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// | ||
// UITableViewRegistable.swift | ||
// sopt_29th_Assignment | ||
// | ||
// Created by ์ก์งํ on 2021/10/28. | ||
// | ||
|
||
import UIKit | ||
|
||
protocol UITableViewRegisterable { | ||
|
||
static var isFromNib: Bool { get } | ||
static func register(target: UITableView) | ||
} | ||
|
||
extension UITableViewRegisterable where Self: UITableViewCell { | ||
|
||
static func register(target: UITableView) { | ||
if self.isFromNib { | ||
target.register(UINib(nibName: Self.className, bundle: nil), forCellReuseIdentifier: Self.className) | ||
} else { | ||
target.register(Self.self, forCellReuseIdentifier: Self.className) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.