전체 글(370)
-
[Swift] UILabel 에 글자별로 크기,색깔 변경
let taskText = "All Tasks (task)" let attributed = NSMutableAttributedString(string: taskText) let strokeTextAttributes = [ // NSAttributedString.Key.strokeColor : UIColor.black, NSAttributedString.Key.foregroundColor : UIColor.black, // NSAttributedString.Key.strokeWidth : 2.0, NSAttributedString.Key.font : UIFont.boldSystemFont(ofSize: 18) ] as [NSAttributedString.Key : Any] attributed.addAttr..
2019.02.12 -
[Swift] navigation 백그라운드 색 변경
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. UINavigationBar.appearance().barTintColor = UIColor.white//.init(red: 23.0/255, green: 197.0/255, blue: 157.0/255, alpha: 1.0) // To change colour of tappable items. UINavigationBar.appearance()..
2019.02.11 -
[Swift] navigation bar 구분선 제거
override func viewDidLoad() { super.viewDidLoad() self.navigationController?.navigationBar.setBackgroundImage(UIImage(), for: UIBarMetrics.default) self.navigationController?.navigationBar.shadowImage = UIImage()}
2019.02.11 -
[iOS] 이게 지우는거지 색칠놀이야? 그래도 색칠놀이!
이미지를 클릭 하시면 다운로드 받으실 수 있습니다.유아색칠놀이 이제 막 걸음마를 배우는 우리 아이에게 재미있는 어플을 소개 해 드리겠습니다.아주아주 단순한 어플입니다.특별한 기능도 없고, 손가락으로 쓱쓱싹싹 문질러주기만 하면, 그림이 완성된답니다. 단순하지만, 아이에게는 신기한 어플이 아닐까 생각됩니다. 유아색칠놀이 메인 화면입니다. 첫번째는 랜덤, 두번째는 이미지 선택 세번째는 설정으로 총 3개의 버튼이 있습니다. 기본적으로 68개의 이미지를 선택 할 수 있습니다.그리고 추가적으로 내 사진에서도 선택할 수도 있습니다. 이것이 색칠을 하는 화면입니다.첫화면에서 첫번째와 두번째 버튼을 눌렀을 때 나오는 화면이고,랜덤을 선택 하였을 경우에는 색칠이 완료 되었을 때 쯤, 다음 그림으로 자동으로 넘어갑니다.(이..
2018.10.11 -
Privacy policy
We do our best to protect users' personal information in accordance with relevant laws and personal information handling policies. 1.Purpose of collecting and using personal information -There is no personal information stored in the app. -It includes an advertising program (AdMob), and the privacy policy can be found at https://policies.google.com/privacy?hl=en -We use Google Analytics to impro..
2018.10.09 -
개인정보처리방침
관계 법령 및 개인정보 취급방침에 따라 사용자 개인정보 보호에 최선을 다합니다. 1.개인정보의 수집 및 이용목적 - 앱에서 저장하는 개인정보 는 없습니다. - 광고 프로그램(AdMob)을 포함하고 있으며, 개인정보처리방침은 https://policies.google.com/privacy?hl=ko 에서 확인하실 수 있습니다 - 서비스 개선을 위해 Google Analytics 를 사용하고 있으며, Google Analytics 를 통해 다음 정보를 수집할 수 있습니다. (앱 설치, 삭제, 업데이트 이벤트 / 사용 디바이스 기종 및 운영체제 / 앱 이벤트 위치, 성별, 연령, 유입경로) - Google Analytics 서비스 약관 : http://www.google.com/analytics/terms/u..
2018.10.03