Skip to content

Commit

Permalink
delete: 불필요 주석, 내용, 코드 삭제 (TeamNADA#690)
Browse files Browse the repository at this point in the history
  • Loading branch information
mini-min committed Mar 13, 2024
1 parent f1670cd commit 3b69603
Show file tree
Hide file tree
Showing 52 changed files with 115 additions and 166 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
},
{
"filename" : "[email protected]",
"scale" : "2x",
"idiom" : "universal"
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "[email protected]",
"scale" : "3x",
"idiom" : "universal"
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
"author" : "xcode",
"version" : 1
}
}
}
File renamed without changes
File renamed without changes
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"images" : [
{
"scale" : "1x",
"filename" : "imgBalanceRight.png",
"idiom" : "universal",
"filename" : "imgBalanceRight.png"
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "2x"
},
{
Expand All @@ -17,7 +17,7 @@
}
],
"info" : {
"version" : 1,
"author" : "xcode"
"author" : "xcode",
"version" : 1
}
}
}
File renamed without changes
File renamed without changes

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "imgHyun.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "imgMin.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"images" : [
{
"scale" : "1x",
"filename" : "imgYe.png",
"idiom" : "universal",
"filename" : "imgYe.png"
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
"author" : "xcode",
"version" : 1
}
}
}
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"images" : [
{
"filename" : "imgYi.png",
"idiom" : "universal",
"scale" : "1x",
"filename" : "imgYi.png"
"scale" : "1x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "2x"
},
{
"scale" : "3x",
"filename" : "[email protected]",
"idiom" : "universal",
"filename" : "[email protected]"
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
"author" : "xcode",
"version" : 1
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "imgYun.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@ import VerticalCardSwiper

class EmptyCardCell: CardCell {

override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}

// MARK: - Methods

static func nib() -> UINib {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,11 @@ class CardListTableViewCell: UITableViewCell {
@IBOutlet weak var pinButton: UIButton!
@IBOutlet weak var titleLabel: UILabel!
@IBOutlet weak var reorderButton: UIButton!

override func awakeFromNib() {
super.awakeFromNib()

}

static func nib() -> UINib {
return UINib(nibName: Const.Xib.cardListTableViewCell, bundle: nil)
}

override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)

// Configure the view for the selected state
}

func initData(title: String) {
titleLabel.text = title
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,6 @@ import UIKit

class EmptyCardListTableViewCell: UITableViewCell {

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
}

static func nib() -> UINib {
return UINib(nibName: Const.Xib.EmptyCardListTableViewCell, bundle: Bundle(for: EmptyCardListTableViewCell.self))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ class CardInGroupCollectionViewCell: UICollectionViewCell {
var groupID: Int?
var cardUUID: String?

override func awakeFromNib() {
super.awakeFromNib()
}

override func prepareForReuse() {
super.prepareForReuse()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,6 @@ import UIKit

class EmptyGroupEditTableViewCell: UITableViewCell {

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
}

static func nib() -> UINib {
return UINib(nibName: Const.Xib.EmptyGroupEditTableViewCell, bundle: Bundle(for: EmptyGroupEditTableViewCell.self))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,12 @@ class GroupEditTableViewCell: UITableViewCell {

// MARK: - @IBOutlet Properties
@IBOutlet weak var titleLabel: UILabel!

// MARK: - View Life Cycle
override func awakeFromNib() {
super.awakeFromNib()

}

// MARK: - Functions
static func nib() -> UINib {
return UINib(nibName: "GroupEditTableViewCell", bundle: nil)
}

override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)

// Configure the view for the selected state
}

func initData(title: String) {
titleLabel.text = title
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ extension AroundMeViewController: CLLocationManagerDelegate {
}

func locationManager(_ manager: CLLocationManager, didChangeAuthorization status: CLAuthorizationStatus) {
//location5
// location5
switch status {
case .authorizedAlways, .authorizedWhenInUse:
print("GPS 권한 설정됨")
Expand Down
Loading

0 comments on commit 3b69603

Please sign in to comment.