Total(372)
-
[Swift] opacity
UIView를 반투명하려면 opacity를 사용한다.let background = UIView()background.layer.backgroundColor = UIColor.black.cgColorbackground.layer.opacity = 0.5 하지만 이 뷰안에 다른 레이블이 포함되었을 경우, 포함된 레이블도 같이 투명하게 되는 경우가 있다.let background = UIView()background.layer.backgroundColor = UIColor.black.cgColorbackground.layer.opacity = 0.5let title = UILabel()backgroud.addSubview(title) 이럴 경우 이렇게 해보자let background = UIView()back..
2019.03.22 -
[Swift] UserDefaults.standard int형식으로 불러오기
// 저장할때는 동일하다. UserDefaults.standard.set(5, forKey:"num") // 불러올 때 UserDefaults.standard.integer(forKey: "num")
2019.02.18 -
[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