summaryrefslogtreecommitdiff
path: root/platform/ios/NSString+MGLAdditions.m
Commit message (Collapse)AuthorAgeFilesLines
* refs #2966: remove -ObjC linker flag & bring in categories via other meansJustin R. Miller2015-11-061-0/+2
|
* Audited headers for nullabilityMinh Nguyễn2015-06-111-1/+1
| | | | | | | | Added some nullability qualifiers in method implementation selectors for consistency with declarations. The user dot view now has a non-zero size. Previously only its layer was sized properly. Also resolved some pedantic warnings about missing designated initializer overrides. Xcode 6.3 or above is now required for building this project.
* Fixed race condition after setting access tokenMinh Nguyễn2015-04-031-0/+10
`Map` should be able to deal with having no access token or JSON even while it’s running. Most of `Map` accounts for this situation, but `reloadStyle()` incorrectly assumes that one or the other is set. This change corrects the assumption in `reloadStyle()`. Also expose the access token and style name to clients as ordinary KVO-compliant properties. Actually, they’re not so ordinary because they’re inspectable! Ref #1070, #1147