summaryrefslogtreecommitdiff
path: root/platform/ios/src/MGLCategoryLoader.m
blob: 9b66be73d8c003293ea83d1fbb04a6c1831197c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#import "MGLCategoryLoader.h"

#import "NSBundle+MGLAdditions.h"
#import "NSProcessInfo+MGLAdditions.h"
#import "NSString+MGLAdditions.h"

#import "MGLMapView.h"

@implementation MGLCategoryLoader

+ (void)loadCategories
{
    // https://github.com/mapbox/mapbox-gl-native/issues/2966
    //
    mgl_linkBundleCategory();
    mgl_linkProcessCategory();
    mgl_linkStringCategory();

    // https://github.com/mapbox/mapbox-gl-native/issues/3113
    //
    [MGLMapView description];
}

@end