You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can you tell me the cell selection in PrettyGridTableViewCell. I need to navigate the page to another page when i click the 1st cell of the PrettyGridTableViewCell. I searched the method but i did find that one. waiting for the reply
Thanks in Advance.
With Regards,
S.SriBharanidharan
The text was updated successfully, but these errors were encountered:
There's a block property, actionBlock, which gets invoked each time a subcell is selected. When you prepare the cell (usually tableView:cellForRowAtIndexPath:), set up the block with the code you need. Take a look at the examples to see that in action.
gridCell.actionBlock = ^(NSIndexPath *indexPath, int selectedIndex) {
[gridCell deselectAnimated:YES];
};
There's a block property, actionBlock, which gets invoked each time a
subcell is selected. When you prepare the cell (usually
tableView:cellForRowAtIndexPath:), set up the block with the code you
need. Take a look at the examples to see that in action.
gridCell.actionBlock = ^(NSIndexPath *indexPath, int selectedIndex) {
[gridCell deselectAnimated:YES];
};
—
Reply to this email directly or view it on GitHubhttps://github.com//issues/29#issuecomment-7816096.
With Regards,
S.SriBharanidharan
iPhone Application Developer,
Finatel Technology pvt., Ltd.,
Chennai ,
Ph:9790671958
Hi,
Can you tell me the cell selection in PrettyGridTableViewCell. I need to navigate the page to another page when i click the 1st cell of the PrettyGridTableViewCell. I searched the method but i did find that one. waiting for the reply
Thanks in Advance.
With Regards,
S.SriBharanidharan
The text was updated successfully, but these errors were encountered: