Swift 140

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 ..

iOS swift tableview with section by snapkit programmatically

iOS swift tableview with section by snapkit programmatically https://magi82.github.io/implement-uitableview-programmatically-in-swift/ Swift Code로 UITableView 구현하기 – 마기의 개발 블로그 – 즐겁게 개발을 하고 싶은 욕심 많은 개발 안녕하세요. 마기입니다. 당분간 Swift 혹은 ios 관련 내용으로 포스팅할 예정입니다. 해외에는 ios 프로젝트에서 storyboard를 사용할지 xib를 사용할지 code로 구현할지에 대한 이슈가 엄청난 핫이슈 magi82.github.io https://ios-development.tistory.com/899 [iOS - swift] UITa..