Address Book Person View in OS x not working after setHidden to Yes. Why?

48 Views Asked by At

I am using AB Person View in OS x application , it is working fine , but when i hide it like

[self.abpersonView setHidden:YES];

and show it again by calling

[self.abPersonView setHidden:NO];

it appears but its not even scrollable and clickable.

I am unable to understand this behavior. kindly assist me.

1

There are 1 best solutions below

1
Hassan Malik On

With the help of @Marek H I have found the answer. you should hide the ABPersonView like

[self.abpersonView.layer setHidden:YES];

and unhide it like

[self.abpersonView.layer setHidden:NO];