iOS 312

iOS swift UIButtonConfiguration

iOS swift UIButtonConfiguration iOS 15+ 부터 새로 생김 버튼안에 이미지(아이콘) + title 같이 넣고 싶은 경우 참조! 진짜 잘 쓴 글 디자이너로부터 받은 이미지 크기가 일정하지 않아서 어떤건 크고 어떤건 작았으나, (때로는 24x24, 48x48)...등 아래 글을 보고 이미지 크기를 동일하게 만들 수 있었다. 내 경우 앱런칭 프로젝트에서 MemoVC -> 버튼들 참조 lazy var othersBtn: UIButton = { let view = UIButton() var config = UIButton.Configuration.filled() config.title = "기타" config.baseForegroundColor = UIColor.black config..

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

iOS swift TabBarController isHidden 처리

iOS swift TabBarController isHidden 처리 http://daplus.net/ios-ios-swift-%EC%95%B1%EC%97%90%EC%84%9C-%ED%83%AD-%ED%91%9C%EC%8B%9C-%EC%A4%84-%EC%88%A8%EA%B8%B0%EA%B8%B0/ [ios] IOS Swift 앱에서 탭 표시 줄 숨기기 - 리뷰나라 iOS 빠른 앱에서 탭 표시 줄을 숨기는 방법을 알아 내려고합니다. 나는 멋진 애니메이션이나 그 어떤 것도 신경 쓰지 않는다. ViewDidLoad () 함수에 넣을 수있는 것입니다. 답변 이것을 당신의 ViewDidL daplus.net