ARSPopover icon indicating copy to clipboard operation
ARSPopover copied to clipboard

Universal popover for iPhone and iPad.

Results 5 ARSPopover issues
Sort by recently updated
recently updated
newest added

How to dismiss popover? There is no property to dismiss the popover If I need to dismiss it after the UITableView Row selection inside popover.

```objective-c - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { [tableView deselectRowAtIndexPath:indexPath animated:YES]; ARSPopover *popoverController = [ARSPopover new]; popoverController.sourceView = [tableView cellForRowAtIndexPath:indexPath]; popoverController.sourceRect = [tableView rectForSection:indexPath.section]; popoverController.contentSize = CGSizeMake(200, 100); popoverController.arrowDirection = UIPopoverArrowDirectionAny;...

As a very simple sample I'm trying to display a multi-line UILabel in an ARSPopover using Auto Layout to break it into multiple lines and to ensure that the popover's...

Yes, just for the demo, showing the usage on the _UIBarButtonItem_