1

我知道我在问什么,这是不可能的。但我在 ios 4.3 之前已经看到了这一点。所以我想访问 call_history 数据库的应用程序。我的要求是我想拿起最后拨打或传入的号码,如果不存在,则保存在地址簿中。

因此,如果有人有任何信息,请与我分享。

提前致谢...

4

1 回答 1

0

您可以使用以下代码段获取上次拨打的号码:

NSString *path = @"/var/mobile/Library/Preferences/com.apple.mobilephone.plist";
NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile:path];
NSString *lastDialed = [NSString stringWithFormat:@"%@", [dict valueForKey:@"DialerSavedNumber"]];
于 2012-07-19T12:26:05.797 回答