Skip to content

Commit

Permalink
fix mysteriously missing semicolons from 611a1da
Browse files Browse the repository at this point in the history
  • Loading branch information
incanus committed Oct 8, 2015
1 parent f172155 commit 4c862e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Geocoder Example/ViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ - (void)viewDidLoad {
[self.view addSubview:self.mapView];

self.resultsLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 20, self.view.bounds.size.width - 20, 30)];
self.resultsLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth
self.resultsLabel.adjustsFontSizeToFitWidth = YES
self.resultsLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
self.resultsLabel.adjustsFontSizeToFitWidth = YES;
self.resultsLabel.backgroundColor = [[UIColor whiteColor] colorWithAlphaComponent:0.5];
self.resultsLabel.userInteractionEnabled = NO;
[self.view addSubview:self.resultsLabel];
Expand Down

0 comments on commit 4c862e5

Please sign in to comment.