Skip to content

Can't make it work with Google Maps. #4

@rajdhakate

Description

@rajdhakate

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

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions