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
import UIKit | |
import BFWControls | |
class NewsTableViewCell: UITableViewCell { | |
} |
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
import UIKit | |
import BFWControls | |
class NewsTableViewCell: NibTableViewCell { | |
} |
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
import UIKit | |
import BFWControls | |
@IBDesignable class NewsTableViewCell: NibTableViewCell { | |
} |
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
import UIKit | |
import BFWControls | |
@IBDesignable class NewsTableViewCell: NibTableViewCell { | |
@IBOutlet weak var detailImageView: UIImageView! | |
@IBInspectable var detailImage: UIImage? { | |
get { | |
return detailImageView.image |
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
import UIKit | |
import BFWControls | |
@IBDesignable class ProductTableViewCell: NibTableViewCell { | |
} |
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
import UIKit | |
import BFWControls | |
@IBDesignable class RightChatTableViewCell: NibTableViewCell { | |
} |
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
import UIKit | |
import BFWControls | |
@IBDesignable class LeftChatTableViewCell: NibTableViewCell { | |
} |
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
import UIKit | |
@IBDesignable class CustomView: UIView { | |
@IBOutlet weak var textLabel: UILabel! | |
@IBOutlet weak var slider: UISlider! | |
} |
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
guard let contentView = Bundle(for: self) | |
.loadNibNamed(String(describing: self), owner: self, options: nil) | |
.first as? UIView | |
else { return } | |
self.addSubview(contentView) | |
addConstraintsToPinToTheSuperview(contentView) |
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
import UIKit | |
class CustomView: UIView { | |
} |
OlderNewer