我正在制作一个应用程序,其中我有图像所示的设置窗口。当我点击铃声然后打开一个铃声列表,我通过itunes文件使用此代码共享
- (void)loadSongsFromDocuments {
[listofsongs removeAllObjects];
if(listofsongs==nil)
listofsongs=[[NSMutableArray alloc] init];
NSFileManager *fileManager = [NSFileManager defaultManager];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documents = [paths objectAtIndex:0];
NSString *fullExtension = [NSString stringWithFormat:@".wav"];
for (NSString *fileName in [fileManager contentsOfDirectoryAtPath:documents error:nil ] ) {
if ([fileName rangeOfString:fullExtension].location != NSNotFound) {
[listofsongs addObject:fileName];
}
}
NSLog(@"Songs :%@",listofsongs);
}
现在我希望当我选择任何一排表视图时,该音调将设置为我的本地通知的声音。我怎么能这样做?
谢谢你的进步......