Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can an application set a ringtone on iPhone?

share|improve this question
1  
These applications usually just create and convert audio to .m4r file and store it in places they have access to. They do not access the iPhone's ringtone directory. You still need a computer with iTunes to download and sync the ringtone with your iPhone. – krafter Oct 7 '10 at 7:44

2 Answers

up vote 16 down vote accepted

This feature is not supported in the API currently since it could be used to set the ringtone to something that the user did not intend to set it to. If you'd like to see it added, best thing to do is submit a feature request to Apple.

share|improve this answer

This can all be done easily, but will be rejected by Apple.

The ringtone can be changed by altering com.apple.SpringBoard.plist, specifically the ringtone key.

The following code can be used to read the actual ringtone title of custom ringtones (synced by iTunes).

NSMutableDictionary *custDict = [[NSMutableDictionary alloc] initWithContentsOfFile:@"/private/var/mobile/Media/iTunes_Control/iTunes/Ringtones.plist"];
NSMutableDictionary *dictionary = [custDict objectForKey:@"Ringtones"];

NSArray *keys = [dictionary allKeys];
id key = [keys objectAtIndex:indexPath.row];
NSMutableDictionary *customRingtone = [dictionary objectForKey:key];
NSString *name = [customRingtone objectForKey:@"Name"];
cell.textLabel.text = name;
share|improve this answer
1  
I didn't have any Ringtones.plist, the plist that worked for me was located at /var/mobile/Library/Preferences/com.apple.springboard.plist (ios 5.0.1, jailbroken). – newenglander Oct 22 '12 at 20:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.