2015-08-25から1日間の記事一覧

【swift】カスタムUIView・カスタムUITableViewCell作り方メモ

自分用にメモ UIView、UIButton、UIImageView・・・ class CustomView: UIView { override init(frame: CGRect) { super.init(frame: frame) } required init(coder aDecoder: NSCoder) { super.init(coder: aDecoder) } } UITableViewCell class CustomTabl…