菜鸟教程小白 发表于 2022-12-13 00:24:31

iphone - 获取联系人图片 ios


                                            <p><p>我正在尝试弄清楚如何在下面的代码中添加人 <strong>last name</strong> 和 <strong>first name</strong>,以便从我的手机中获取他们的联系人图片:</p >

<pre><code>if(ABPersonHasImageData(aABRecordRef))
{
   UIImage *image = ;
   cell.imageView.image = image;
} else {
   UIImage *image1=;
   cell.imageView.image=image1;
}
</code></pre>

<p>我也可能在此处缺少代码,因此请务必填写需要的区域。我只是不知道如何将 <strong>first,last</strong> 名称添加到上面的代码中,以便我知道何时联系到该联系人为其提取图像。</p>

<p>任何帮助都会很棒!谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>要获取 FirstName 和 LastName ,您可以使用:</p>

<pre><code>NSString *firstName = (NSString *)ABRecordCopyValue(aABRecordRef, kABPersonFirstNameProperty);
NSString *lastName = (NSString *)ABRecordCopyValue(aABRecordRef, kABPersonLastNameProperty);
</code></pre>

<p>这里显示如何 <a href="https://stackoverflow.com/questions/5115977/search-by-number-and-get-the-image-using-abaddressbook" rel="noreferrer noopener nofollow">Search By Number and Get the image using ABAddressBook</a> .</p>

<p>但您想按名字和姓氏进行搜索。所以根据<a href="https://developer.apple.com/library/mac/#documentation/userexperience/Conceptual/AddressBook/Tasks/Searching.html#//apple_ref/doc/uid/20001024-103495" rel="noreferrer noopener nofollow">Documentation</a> , 你应该使用 <a href="https://developer.apple.com/library/mac/#documentation/userexperience/Reference/AddressBook/Classes/ABAddressBook_Class/Reference/Reference.html#//apple_ref/occ/instm/ABAddressBook/recordsMatchingSearchElement:" rel="noreferrer noopener nofollow">-recordsMatchingSearchElement:</a>多参数的方法。</p>

<p>获得匹配的数据后,您可以使用以下代码提取图像:</p>

<pre><code>CFDataRef imageData = ABPersonCopyImageData(aABRecordRef);
UIImage *image = ;
CFRelease(imageData);
</code></pre>

<p>希望你能从中得到一些有用的东西。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 获取联系人图片 ios,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/14259332/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/14259332/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 获取联系人图片 ios