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

MWMAPIBarView.mm « APIBar « MapViewControls « CustomViews « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 628c44113fba5dc434aad43773109671bf459ea2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#import "MWMAPIBarView.h"

@implementation MWMAPIBarView

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

- (void)layoutSubviews
{
  self.frame = {{}, {self.superview.bounds.size.width, 20.0}};
  [super layoutSubviews];
}

@end