Monotouch ABAdressBook GetPhones 检查空值
ABAddressBook mybook = new ABAddressBook();
ABPerson[] allPeople = mybook.GetPeople();
foreach(ABPerson thisPerson in allPeople){
if(thisPerson.GetPhones() != null)
ABMultiValue<string> myMultiPhone = thisPerson.GetPhones();
}
}
我的应用程序中有以前的代码。使用 Monotouch build 1.4 我的应用程序出错了。如果没有与联系人关联的电话号码,我会收到空错误。有谁知道如何检查 null 吗?
ABAddressBook mybook = new ABAddressBook();
ABPerson[] allPeople = mybook.GetPeople();
foreach(ABPerson thisPerson in allPeople){
if(thisPerson.GetPhones() != null)
ABMultiValue<string> myMultiPhone = thisPerson.GetPhones();
}
}
I have the previous code in my application. With Monotouch build 1.4 my application errors out. If there is no phone number associated with a contact, I get a null error. Does anyone have any idea how to check for null?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终将代码放入 try catch 中。哦,好吧,它有效。
I ended up putting the code in a try catch. Oh well, it works.