开发者

Why do I get this 'Use of undeclare identifier addressbook' error?

开发者 https://www.devze.com 2023-04-12 20:35 出处:网络
NSArray* allPersons = 开发者_Go百科(NSArray*)ABAddressBookCopyArrayOfAllPeople(addressBook); I get a Use of undeclare identifier addressbook error. Why?The error you are getting answers your questio
NSArray* allPersons = 开发者_Go百科(NSArray*)ABAddressBookCopyArrayOfAllPeople(addressBook);

I get a Use of undeclare identifier addressbook error. Why?


The error you are getting answers your question. You are passing addressBook to the function, but you haven't defined addressBook.

0

精彩评论

暂无评论...
验证码 换一张
取 消