Skip to content

Commit

Permalink
Merge pull request #708 from tt-sport-mobile/dev/support-xcode-7
Browse files Browse the repository at this point in the history
Support iOS SDK < 10 ( XCode < 8 )
  • Loading branch information
Spike Brehm committed Oct 20, 2016
2 parents f67a6db + 2de4c9a commit 8e8ce98
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ios/AirMaps/Callout/SMCalloutView.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ extern NSTimeInterval const kSMCalloutViewRepositionDelayForUIScrollView;
// Callout view.
//

#if __IPHONE_OS_VERSION_MAX_ALLOWED < 100000
@interface SMCalloutView : UIView
#else
@interface SMCalloutView : UIView <CAAnimationDelegate>
#endif

@property (nonatomic, weak, nullable) id<SMCalloutViewDelegate> delegate;
/// title/titleView relationship mimics UINavigationBar.
Expand Down

2 comments on commit 8e8ce98

@steve-gray
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a timeline for this one being released into the wild? I've had to roll back a project to XCode 7 due to Appium issues with XCUITest, and I'm presently monkey-patching this in with an NPM postinstall script.

@jdmunro
Copy link

@jdmunro jdmunro commented on 8e8ce98 Nov 8, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would be great to see this in a patch release 👍

Please sign in to comment.