hi guys
I'm trying to avoid the redeclaration of self, in the following
picker2.peoplePickerDelegate = self;
// showing the picker
[self presentModalViewController:picker2 animated:YES];
Why am i not able to just go like:
[picker2.peoplePickerDelegate presentModalViewController:picker2 animated:YES];
Regards