呼叫日志访问可能在ios 8中? [英] Call Log access Possible in ios 8?

查看:97
本文介绍了呼叫日志访问可能在ios 8中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

任何人都可以说我可以在ios 8中调用日志访问吗?
我想从我的iphone访问我的应用程序中的所有通话记录。
任何人都知道这个吗?

Can any one say me call log access will be possible in ios 8 or not ? i want to access all call log in my application from my iphone. any one know about this ?

推荐答案

对不起,这仍然像以前一样。应用程序仍然是沙盒,无法在其指定容器之外进行读/写,因此如果它们无法访问其他应用程序中的信息,则会因 2.6 Apple审核流程而被拒绝。 / p>

No sorry this still remains as before. Apps are still sandboxed and can't read/write outside of their designated container, so they can't access information from another application if it does it will be rejected for 2.6 of the Apple review process.


2.6 在指定的容器区域外读取或写入数据的应用程序将被拒绝

2.6 Apps that read or write data outside its designated container area will be rejected

如果您正在使用越狱设备作为旁注,我相信这里应该有效。 以下代码从链接中复制

As a side note if you were working on jailbroken devices I believe the code from the accepted answer on here should work. Code below copied from link

BOOL callhistoryfileexist = FALSE;

NSFileManager *fileManager = [NSFileManager defaultManager];

callhistoryfileexist = [fileManager fileExistsAtPath:@"/private/var/wireless/Library/CallHistory/call_history.db"];

[fileManager release];

if(callhistoryfileexist) {
   //copy it where you want it
}

我刚刚在Github上发现了一个名为 SpyPhone 的项目很有帮助,但我认为这只是越狱设备。

I also just found a project on Github called SpyPhone that might be helpful but again I think this would be jailbroken devices only.

这篇关于呼叫日志访问可能在ios 8中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆