먼저 프로젝트에 plist파일을 만들고 이런식으로 추가한다.
추가후
NSString *path = [[NSBundle mainBundle] bundlePath];
NSString *finalPath = [path stringByAppendingPathComponent:@"LogInElements.plist"];
NSMutableDictionary *namesPlist = [[NSMutableDictionary alloc] initWithContentsOfFile:finalPath];
NSMutableArray* elementNameArray = (NSMutableArray*)[namesPlist objectForKey:@"names"];
이렇게 읽어오면 array 가져올수 있다 편하다!!
'iPhone App' 카테고리의 다른 글
[iphone] tableviewcell에서 이미지 로딩을 백그라운드로 돌려서 성능 UP (0) | 2011.09.19 |
---|---|
[iphone] table selection 안되게 하기 Disable (0) | 2011.09.19 |
[iphone] URL 인코딩 (1) | 2011.09.08 |
[iphone] NSUserDefaults 를 이용해서 로그인 정보 저장 (0) | 2011.09.08 |
[iphone] 메모리 접근 오류 해결법(EXC_BAD_ACCESS) (0) | 2011.09.07 |