출처 : http://www.chuckstar.com/blog/technology/iphone-sample-calling-methods-in-between-classes/
지금 클래스 thisViewClass
다른 클래스 otehrViewClass
** ThisViewClass
#import "ThisViewClass.h" #import "OtherViewClass.h" @implementation ThisViewClass ~~~~
다음, 다른 클래스의 메소드를 호출할 메소드를 작성한다.
- (void) insideSomeMethod { [(OtherViewClass *)self.view setName:@"chuckstar"]; }
** OtherViewClass
setName 메소드를 OtherViewClass에 작성한다.
- (void) setName:(NSString *)name { coolPerson.text = name; }
마지막으로 setName 메소드를 헤더에 등록해주자.
@interface OtherViewClass : UIViewController { ~~~~~ } - (void) setName:(NSString *)name; @end
'개발도구 > iOS - 아이폰 개발' 카테고리의 다른 글
[iso] tableview Header (0) | 2013.01.17 |
---|---|
[ios] 특정문자로 배열만들기 (0) | 2013.01.15 |
[ios] tableview tutorial 강좌 (0) | 2013.01.04 |
[ios] 'aps-environment' 인타이틀먼트 문자열 없음" (0) | 2012.12.26 |
[ios] label 정렬 - Vertically align text within a UILabel (0) | 2012.12.18 |