R i c h a r d . H e a r d
R i c h a r d . H e a r d
Are you using ARC? CocoaPods? What version/s of iOS? What library Version? Device or Simulator? All of these things would be useful to enable further debugging. Full crash log would...
Unfortunately i've had a report that the changes didn't actually fix the issue. I've never actually been able to reproduce the crash myself, so debugging the issue is made harder...
Hmmm... interesting.. I wonder if the last strong reference to the actual addressbook is being released.. Perhaps on receipt of a change notification..
No idea. Possibly because the created objects are not saved to the store. Feel free to upload a sample project or write a unit-test to exercise the issues you are...
Are you using ARC? CocoaPods? What version/s of iOS? What library Version? Device or Simulator? All of these things would be useful to enable further debugging. Full crash log would...
If someone could whip up a sample project that reproduces the issue, that would be awesome.
I'm not sure why the process is being suspended. This is what a SIGSTOP is. You can resume the process by calling `kill -SIGCONT `.
`ABCreateStringWithAddressDictionary()` is in the `AddressBookUI` framework which we don't link with.
Sounds like a good addition to have in the framework. As for method names, perhaps: ``` -(NSArray*)unifiedPeople; -(NSArray*)unifiedPeoplePreferringSource:(RHSource*)source; ``` or ``` -(NSArray*)peopleUnifiedUsingDefaultSource; -(NSArray*)peopleUnifiedUsingSource:(RHSource*)source; ``` If you have some working code,...
Hmm, thats quite strange.