Contents

조회 수 860 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

원형은..

NSSelectorFromString(<#NSString *Selector Name#>)


해당 함수(메소드)의 유효성을 확인하는 코드

SEL selector = NSSelectorFromString(@"placeToDownWithPos:shipSize:");
if ([self respondsToSelector:selector]) {
    NSLog(@"respondsToSelector");
}

실행까지는 이렇게 하면 됨 ㅋㅋ

NSString *methodString = @"agreeOmClause";
SEL selector = NSSelectorFromString(methodString);
if ([self respondsToSelector:selector]) {
    [self performSelector:selector withObject:nil afterDelay:0.0];
}


[출처] http://stackoverflow.com/questions/22585912/nsselectorfromstring-does-not-work


?

  1. [ios] 비디오,네트워크,소셜로그인 테스트

  2. [ios] 비동기 블럭 코드 예제

  3. [ios] 배열(NSArray) 연산과 간단한 애니메이션(split images)

  4. [ios] 미스터피자(Mr.pizza) 어플

  5. [ios] 문자열로 함수 실행하기 (eval 함수처럼)

  6. [ios] 로컬에 있는 JS 파일 웹뷰에서 동적으로 실행하기

  7. [ios] 로컬에 있는 html 실행하기

  8. [ios] 디렉토리 하하하..

  9. [ios] 동영상 플레이어 샘플 (for Remote Url)

  10. [ios] 동영상 플레이어 샘플 (for PIP Player)

  11. [ios] 동영상 플레이어 샘플 (for Local File)

  12. [ios] 네트워크 인디케이터(NetworkActivityIndicator) 작동

Board Pagination Prev 1 ... 45 46 47 48 49 50 51 52 53 54 ... 98 Next
/ 98