Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MWMExtendedPlacePageView.m « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a03cfc352f153b8aff675a742af68ab6ce4409f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "MWMExtendedPlacePageView.h"

@implementation MWMExtendedPlacePageView

- (instancetype)initWithCoder:(NSCoder *)aDecoder
{
  self = [super initWithCoder:aDecoder];
  if (self)
    self.autoresizingMask = UIViewAutoresizingNone;
  return self;
}

@end