Iタブネイティブ電話更新ムービー に私のアプリで作られた発信通話しかし、私は唯一のID(EX:12345678)を取得することができますが、説明(EX:デビッド)を取得することはできませんネイティブの電話のrecentsからVoIP電話の名前の説明を取得するには?
ここで
info of the outgoing callは、私がDESCRに関するすべての情報を見つけていないことができ
- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void(^)(NSArray * __nullable restorableObjects))restorationHandler NS_AVAILABLE_IOS(8_0)
{
INInteraction *interaction = userActivity.interaction;
INStartAudioCallIntent *startAudioCallIntent = (INStartAudioCallIntent *)interaction.intent;
INPerson *contact = startAudioCallIntent.contacts[0];
INPersonHandle *personHandle = contact.personHandle;
NSString *phoneNumber = personHandle.value;
}
AppDelegate.mで私のコードですINPersonオブジェクトのiption(EX:David)
電話の説明を得る他の方法はありますか?
」この情報がアプリケーションに渡されるuserActivityに渡されるかどうかは不明です」Speakerboxのサンプルコードを参照してください。 – user102008