분류 전체보기 333

iOS swift 셀 재사용 문제 해결

iOS swift 셀 재사용 문제 해결 https://velog.io/@dlwns33/Swift-%EC%85%80%EC%9D%98-%EC%9E%AC%EC%82%AC%EC%9A%A9-%EB%AC%B8%EC%A0%9C-%ED%95%B4%EA%B2%B0%ED%95%98%EA%B8%B0prepareForReuse [Swift] 셀의 재사용 문제 해결하기 prepareForReuse() 앱잼 도중 선물 모아보기 뷰에서 컬렉션뷰 셀을 직접 custom으로 제작해서 쓰는데, '받은' 에서 '준'으로 넘어갈 때 마다 전에 쓰인 사진이 한번 보이고 해당 이미지로 넘어가는 현상이 나타났다. ( velog.io https://kiljh.tistory.com/232 iOS 테이블뷰(UITableView) 셀의 재사용 안녕하세..

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