-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFollowTableViewCell.swift
More file actions
42 lines (26 loc) · 985 Bytes
/
FollowTableViewCell.swift
File metadata and controls
42 lines (26 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// FollowTableViewCell.swift
// TIK TIK
//
// Created by Junaid Kamoka on 30/06/2020.
// Copyright © 2020 Junaid Kamoka. All rights reserved.
//
import UIKit
class FollowTableViewCell: UITableViewCell {
@IBOutlet weak var follow_img: UIImageView!
@IBOutlet weak var follow_view: UIView!
@IBOutlet weak var folow_name: UILabel!
@IBOutlet weak var folow_username: UILabel!
@IBOutlet weak var btn_follow: UIButton!
@IBOutlet weak var foolow_btn_view: UIView!
@IBOutlet weak var btnWatch: UIButton!
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
self.btnWatch.backgroundColor = UIColor(red: 32 / 255.0, green: 40 / 255.0, blue: 51 / 255.0, alpha: 1.0)
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}