ios 158

iOS swift addGestureRecognizer 클릭시 UILabel 색상 변화

런칭한 앱 업데이트 중 기록 -collectionview에서 collectionview 클릭시 해당 contentview에 있는 placeLabel 색상이 검정->textcolor로 바뀌면서 화면 전환. ShopVC.swift //클릭할 때 색깔이 칠해지는 부분 인식하기 위해서 일단 선언 nil, 0, 1, 2, ... var selectedIndexPath: IndexPath! //collectionview에 tap했을때 감지하는걸 달아줌 override func viewDidLoad() { collectionView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(didTouchDown(gestureRecogniz..

iOS swift TabBar image 관련

iOS swift TabBar image 관련 https://vapor3965.tistory.com/101 UITabBarItem 이미지가 원본과 다르게 보이는 현상 해결하기 디자이너 분께서 주신 아래 이미지를 토대로 TabBarController의 TabBarItem에 적용하려고 했다. 문제점 하지만 아래와 같이 동그라미이긴 한데.. 다 채워져있다. 몹시 당황스럽다🙃. Debug View Hierarchy에 vapor3965.tistory.com https://stackoverflow.com/questions/61642009/how-can-i-correctly-size-uitabbarcontroller-icons How can I correctly size UITabBarController icons?..

iOS swift 키보드 올리기/내리기

iOS swift 키보드 올리기/내리기 총정리 핵심 키워드 : 키보드 올리기 .becomeFirstResponder() 키보드 내리기 .resignFirstResponder() https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=horajjan&logNo=220896443043 [iOS] 키보드(Keyboard) 다루기 'iOS 앱 개발을 위한 Swift3, 8장'을 인용하였다 이전에 키보드(Keyboard) 관련된 내용을 포스팅한 적... blog.naver.com

iOS swift UITextField/UITextView 글자 수 제한

iOS swift UITextField/UITextView 글자 수 제한 https://www.todaymart.com/328 UITextField 또는 UITextView 문자 수를 제한하는 방법 UITextField또는 UITextView에 사용자가 특정 글자 수보다 더를 입력되는것을 방지하려면 shouldChangeCharactersIn(텍스트 필드) 또는 shouldChangeTextIn(텍스트 뷰) 를 사용하시면 됩니다. UITextField (한 줄).. www.todaymart.com

iOS swift textfield/ textView return key(enter) keyboard down 키보드 내리기

iOS swift textfield/ textView return key(enter) keyboard down 키보드 내리기 https://www.zerotoappstore.com/how-to-hide-keyboard-in-swift-return-key.html How To Hide Keyboard In Swift On Pressing Return Key - Zero To App Store Eddy Chung I teach iOS development on ZeroToAppStore.com. www.zerotoappstore.com iQKeyboardManager의 경우, textFieldShouldReturn 메소드만 써줘도 해당 기능 적용됨. (touchesBegan 안해도 되었음) https://d..

iOS swift 토스트메시지 띄우기

iOS swift 토스트메시지 띄우기 https://royhelen.tistory.com/46 [iOS/Swift] Toast Message 만들기 이번 포스팅은 Toast Message를 만드는 방법을 포스팅하겠습니다~ 일단 Toast 메시지가 뭔지부터 보여드리겠습니다~ 바로 이것입니다. 기본적으로 Toast Message를 띄우는건 안드로이드에서는 자체 라이 royhelen.tistory.com import Toast 한다음에 위에 그대로 적용하면 됨 :)

iOS swift navigation title font size change

iOS swift navigation title font size change firstNavigationController.navigationBar.titleTextAttributes = [NSAttributedString.Key.font : UIFont.boldSystemFont(ofSize: 20)] 진짜 간단하게 끝낼 수 있는데 은근 찾기 어려웠음 ㅠ https://stackoverflow.com/questions/32154426/how-to-access-the-ios-system-font-programmatically How to access the iOS system font programmatically I am trying to change the font size of the title ..