/Users/본인피씨이름/Library/Application Support/iPhone Simulator/iOS개발버전/Applications/개발프로젝트ID
10.6 이전 버전은 위의 경로로 바로 이동 가능
10.7 이후 버전은 파인더 > 메뉴 > option 키를 누르면 라이브러리 표시 됨
이때 이동 가능
/Users/본인피씨이름/Library/Application Support/iPhone Simulator/iOS개발버전/Applications/개발프로젝트ID
10.6 이전 버전은 위의 경로로 바로 이동 가능
10.7 이후 버전은 파인더 > 메뉴 > option 키를 누르면 라이브러리 표시 됨
이때 이동 가능
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"Message" delegate:self cancelButtonTitle:@"Comfirm" otherButtonTitles:nil, nil];
[alert show];
[alert release];
# simulator일 경우
NSString *filepath = [[NSBundle mainBundle] pathForResource:@"fileName" ofType:@"확장자"];
NSError *error = [[NSError alloc] init];
NSString *data = [[NSString alloc] initWithContentsOfFile:filepath encoding:NSUTF8StringEncoding error:&error];