반응형
다음 코드는
아이폰에 기본적으로 있는 알림소리의 경로를 얻어오는 함수 입니다.
알림 관련 어플을 제작할 때 유용하게 쓰일 거 같습니다.
NSFileManager *filemgr = [NSFileManager defaultManager];
NSError *error;
NSArray *fileList = [filemgr contentsOfDirectoryAtPath:@"/System/Library/Audio/UISounds/" error:&error];
for(int i = 0; i < [fileList count]; i++){
NSString *strSrc = [NSString stringWithFormat:@"/System/Library/Audio/UISounds/%@", [fileList objectAtIndex:i]];
}
NSError *error;
NSArray *fileList = [filemgr contentsOfDirectoryAtPath:@"/System/Library/Audio/UISounds/" error:&error];
for(int i = 0; i < [fileList count]; i++){
NSString *strSrc = [NSString stringWithFormat:@"/System/Library/Audio/UISounds/%@", [fileList objectAtIndex:i]];
}
반응형
'Programming > iOS' 카테고리의 다른 글
Block 설명 및 예제 (0) | 2011.12.12 |
---|---|
아이폰과 아이패드 UI화면 분기처리 (0) | 2011.11.21 |
현재 셋팅되어 있는 언어 (0) | 2011.11.17 |
현재시간에서 초만 제거하기 (0) | 2011.11.16 |
아이폰 가로모드 & 세로모드 (0) | 2011.11.15 |