git 오류 ] fatal: unable to access 'https://github.com....': SSL certificate problem: unable to get local issuer certificate
ssl 검증 끔 git config --global http.sslVerify false
ssl 검증 끔 git config --global http.sslVerify false
위 사진처럼 이미지, 텍스트, 뷰로 이루어진 내용이 있다. 서로 정보는 다르지만 레이아웃이 같기 때문에 하나의 뷰를 만들어 재사용이 가능하다. class ContentsView: UIView { init(title: String, subTitle: String, img: String) { super.init(frame: CGRect.zero) self.titleLabel.text = title self.subTitleLabel.text = subTitle self.iconImageView.image = UIImage(named: img) setupViews() } required init?(coder aDecoder: NSCoder) { super.init(coder: aDecoder) } } 위 처럼 ..
lazy var stocksCategoryFilterBtn: UIButton = { let bt = UIButton(type: .system) bt.setTitle("전일 기준 ", for: .normal) let config = UIImage.SymbolConfiguration( pointSize: 11, weight: .regular, scale: .default) let image = UIImage(systemName: "chevron.down", withConfiguration: config) bt.setImage(image, for: .normal) bt.tintColor = .systemGray bt.translatesAutoresizingMaskIntoConstraints = false bt..
// // Extensions.swift // LL // // Created by devgeeyong on 2021/12/03. // import UIKit extension UIFont { class func PoorStory(type: PoorStoryType, size: CGFloat) -> UIFont!{ guard let font = UIFont(name: type.name, size: size) else{ return nil } return font } public enum PoorStoryType{ case Bold var name: String{ switch self{ case .Bold: return "PoorStory-Regular" } } } } //적용하기 label.font = U..
tableView.tableHeaderView = UIView(frame: CGRect(x: 0, y: 0, width: 0, height: 0.1)) https://stackoverflow.com/questions/44174655/how-to-remove-top-space-from-top-of-tableview