UIView.transition(with: yourView,

              duration: 0.5,  /* 애니메이션 실행 시간 */

              options: .transitionCrossDissolve, /* 애니메이션 옵션 */

              animations: { self.imageView.image = newImage },

              completion: nil)





'swift' 카테고리의 다른 글

실행지연  (0) 2018.05.18
swift 버전 확인  (0) 2018.03.29
UITextField password  (0) 2018.03.21
UiTextField only english  (0) 2018.03.21
UiButton 이벤트 적용  (0) 2018.03.21

// seconds에 초 만큼 실행지연

DispatchQueue.main.asyncAfter(deadline: .now() + .seconds(1), execute: {

  YourCode

})

'swift' 카테고리의 다른 글

View 애니메이션  (1) 2018.05.18
swift 버전 확인  (0) 2018.03.29
UITextField password  (0) 2018.03.21
UiTextField only english  (0) 2018.03.21
UiButton 이벤트 적용  (0) 2018.03.21

터미널에 xcrun swift -version

'swift' 카테고리의 다른 글

View 애니메이션  (1) 2018.05.18
실행지연  (0) 2018.05.18
UITextField password  (0) 2018.03.21
UiTextField only english  (0) 2018.03.21
UiButton 이벤트 적용  (0) 2018.03.21

UITextField.isSecureTextEntry = true

'swift' 카테고리의 다른 글

실행지연  (0) 2018.05.18
swift 버전 확인  (0) 2018.03.29
UiTextField only english  (0) 2018.03.21
UiButton 이벤트 적용  (0) 2018.03.21
UITextview 스크롤 최상위 부터 보기  (0) 2018.03.21

UITextField.keyboardType = .asciiCapable

'swift' 카테고리의 다른 글

swift 버전 확인  (0) 2018.03.29
UITextField password  (0) 2018.03.21
UiButton 이벤트 적용  (0) 2018.03.21
UITextview 스크롤 최상위 부터 보기  (0) 2018.03.21
textField border style none, textField font 크기 변경  (0) 2018.03.13

UIButton.addTarget(self, action: #selector(self.eventFunction), for: .touchUpInside)


@IBAction func buttonEvent() {

  //your code

  print("buttonEvent")

}

'swift' 카테고리의 다른 글

UITextField password  (0) 2018.03.21
UiTextField only english  (0) 2018.03.21
UITextview 스크롤 최상위 부터 보기  (0) 2018.03.21
textField border style none, textField font 크기 변경  (0) 2018.03.13
textField, textView  (0) 2018.03.13

let contentHeight = yourUITextView.contentSize.height

let offSet = yourUITextView.contentOffset.x

let contentOffset = contentHeight - offSet


yourUITextView.contentOffset = CGPoint(x: 0, y: -contentOffset)

'swift' 카테고리의 다른 글

UiTextField only english  (0) 2018.03.21
UiButton 이벤트 적용  (0) 2018.03.21
textField border style none, textField font 크기 변경  (0) 2018.03.13
textField, textView  (0) 2018.03.13
네비게이션 바 색상 변경  (0) 2018.03.13

보더 스타일

textField.border.style = .none


폰트 크기

textField.font = UIFont(name: textField.font!.fontName, size: 14)

'swift' 카테고리의 다른 글

UiTextField only english  (0) 2018.03.21
UiButton 이벤트 적용  (0) 2018.03.21
UITextview 스크롤 최상위 부터 보기  (0) 2018.03.21
textField, textView  (0) 2018.03.13
네비게이션 바 색상 변경  (0) 2018.03.13

텍스트 필드

textField.isUserInteractionEnabled = false


텍스트 뷰

textView.isUserInteractionEnabled = false

'swift' 카테고리의 다른 글

UiTextField only english  (0) 2018.03.21
UiButton 이벤트 적용  (0) 2018.03.21
UITextview 스크롤 최상위 부터 보기  (0) 2018.03.21
textField border style none, textField font 크기 변경  (0) 2018.03.13
네비게이션 바 색상 변경  (0) 2018.03.13

navigationController?.navigationBar.barTintColor = UIColor.Red

'swift' 카테고리의 다른 글

UiTextField only english  (0) 2018.03.21
UiButton 이벤트 적용  (0) 2018.03.21
UITextview 스크롤 최상위 부터 보기  (0) 2018.03.21
textField border style none, textField font 크기 변경  (0) 2018.03.13
textField, textView  (0) 2018.03.13

+ Recent posts