Hi I want to implement this over my google map view. Though the draggable view is visible and hides/unhides on taps, it is still undraggable.
Here's my code -
@property (nonatomic, strong) AGPullViewConfigurator *configurator;
@property (strong, nonatomic) IBOutlet UIView *informationPopup;
- (void)viewDidLayoutSubviews { [super viewDidLayoutSubviews]; [self.configurator layoutPullView]; }
`- (void) setupPullInformationView {
self.configurator = [AGPullViewConfigurator new];
[self.configurator setupPullViewForSuperview:self.view colorScheme:ColorSchemeTypeWhite];
self.configurator.percentOfFilling = @25;
self.configurator.delegate = self;
self.configurator.needBounceEffect = true;
self.configurator.animationDuration = @0.3;
self.configurator.enableShowingWithTouch = true;
self.configurator.enableHidingWithTouch = true;
[self.configurator fullfillContentViewWithView:self.informationPopup];
}`
informationPopup is a view i designed in xib. i'm making that view my pullup view.
Any help regarding this is appreciated.
Thanks for this library.
EDIT : Also i've noticed when pullView is opened, the mapView becomes unresponsive. I guess that's because of the upperButton role in play. If i disable the upperButton i'm unable to hide the pullView
Hi I want to implement this over my google map view. Though the draggable view is visible and hides/unhides on taps, it is still undraggable.
Here's my code -
@property (nonatomic, strong) AGPullViewConfigurator *configurator;@property (strong, nonatomic) IBOutlet UIView *informationPopup;- (void)viewDidLayoutSubviews { [super viewDidLayoutSubviews]; [self.configurator layoutPullView]; }`- (void) setupPullInformationView {
self.configurator = [AGPullViewConfigurator new];
[self.configurator setupPullViewForSuperview:self.view colorScheme:ColorSchemeTypeWhite];
self.configurator.percentOfFilling = @25;
self.configurator.delegate = self;
self.configurator.needBounceEffect = true;
self.configurator.animationDuration = @0.3;
self.configurator.enableShowingWithTouch = true;
self.configurator.enableHidingWithTouch = true;
}`
informationPopupis a view i designed in xib. i'm making that view my pullup view.Any help regarding this is appreciated.
Thanks for this library.
EDIT : Also i've noticed when
pullViewis opened, themapViewbecomes unresponsive. I guess that's because of theupperButtonrole in play. If i disable theupperButtoni'm unable to hide thepullView