👨🏻💻 오늘의 작업[ 1. 디자인 시스템 추가 적용 ] Apple로 시작하기 버튼private let appleText: UILabel = { let label = UILabel() let attributedText = NSAttributedString( string: String(localized: "LoginApple"), // 다국어 지원 구문 attributes: title16.attributes // 폰트 적용 ) label.attributedText = attributedText label.textColor = .backgroundWhite // 컬러 적용 return label}() 카카오로 시작하기 버튼private let ..