[Swift] #selector

Martin Kim·2021년 7월 27일
0

Swift

목록 보기
2/11
post-thumbnail

#selector

  • 함수의 매개변수로 다른 함수를 사용할때 붙이는 키워드. callback 함수랑 유사한 개념이다.
  • 본래 objective-c에서는 @selector로 쓰였지만 이것이 스위프트로 넘어오며 #selector로 변경되었다고 한다
  • 함수명 뒤에 매개변수도 들어갈 수 있다.
.
.
.
button.addTarget(self, action: #selector(buttonAction), for: .touchUpInside)

func buttonAction(_ button: UIButton) { 
    print("Button Pressed.")  
}


// 코드 예시 출처: https://tryyourbest5.tistory.com/323 [Timid Traveller Richard]
profile
학생입니다

0개의 댓글