-
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.
- Loading branch information
Showing
9 changed files
with
458 additions
and
1 deletion.
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
30 changes: 30 additions & 0 deletions
30
AppleContacts/AppleContacts/Source/Detail/Cell/DetailButtonTVC.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,30 @@ | ||
// | ||
// DetailButtonTVC.swift | ||
// AppleContacts | ||
// | ||
// Created by 김혜수 on 2021/09/14. | ||
// | ||
|
||
import UIKit | ||
|
||
class DetailButtonTVC: UITableViewCell { | ||
|
||
public static let identifier = "DetailButtonTVC" | ||
|
||
@IBOutlet weak var label: UILabel! | ||
override func awakeFromNib() { | ||
super.awakeFromNib() | ||
// Initialization code | ||
} | ||
|
||
override func setSelected(_ selected: Bool, animated: Bool) { | ||
super.setSelected(selected, animated: animated) | ||
|
||
// Configure the view for the selected state | ||
} | ||
|
||
func setData(title: String){ | ||
label.text = title | ||
} | ||
|
||
} |
25 changes: 25 additions & 0 deletions
25
AppleContacts/AppleContacts/Source/Detail/Cell/DetailFacetimeTVC.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 @@ | ||
// | ||
// DetailFacetimeTVC.swift | ||
// AppleContacts | ||
// | ||
// Created by 김혜수 on 2021/09/14. | ||
// | ||
|
||
import UIKit | ||
|
||
class DetailFacetimeTVC: UITableViewCell { | ||
|
||
public static let identifier = "DetailFacetimeTVC" | ||
|
||
override func awakeFromNib() { | ||
super.awakeFromNib() | ||
// Initialization code | ||
} | ||
|
||
override func setSelected(_ selected: Bool, animated: Bool) { | ||
super.setSelected(selected, animated: animated) | ||
|
||
// Configure the view for the selected state | ||
} | ||
|
||
} |
25 changes: 25 additions & 0 deletions
25
AppleContacts/AppleContacts/Source/Detail/Cell/DetailMemoTVC.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 @@ | ||
// | ||
// DetailMemoTVC.swift | ||
// AppleContacts | ||
// | ||
// Created by 김혜수 on 2021/09/14. | ||
// | ||
|
||
import UIKit | ||
|
||
class DetailMemoTVC: UITableViewCell { | ||
|
||
public static let identifier = "DetailMemoTVC" | ||
|
||
override func awakeFromNib() { | ||
super.awakeFromNib() | ||
// Initialization code | ||
} | ||
|
||
override func setSelected(_ selected: Bool, animated: Bool) { | ||
super.setSelected(selected, animated: animated) | ||
|
||
// Configure the view for the selected state | ||
} | ||
|
||
} |
25 changes: 25 additions & 0 deletions
25
AppleContacts/AppleContacts/Source/Detail/Cell/DetailNumberTVC.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 @@ | ||
// | ||
// DetailNumberTVC.swift | ||
// AppleContacts | ||
// | ||
// Created by 김혜수 on 2021/09/14. | ||
// | ||
|
||
import UIKit | ||
|
||
class DetailNumberTVC: UITableViewCell { | ||
|
||
public static let identifier = "DetailNumberTVC" | ||
|
||
override func awakeFromNib() { | ||
super.awakeFromNib() | ||
// Initialization code | ||
} | ||
|
||
override func setSelected(_ selected: Bool, animated: Bool) { | ||
super.setSelected(selected, animated: animated) | ||
|
||
// Configure the view for the selected state | ||
} | ||
|
||
} |
Oops, something went wrong.