forked from organicmaps/organicmaps
[ios] Fixed deprecated warnings and smth else.
This commit is contained in:
parent
3cae3625dd
commit
aec4b2ccf5
18 changed files with 57 additions and 139 deletions
|
@ -46,11 +46,6 @@ static NSString * const kAddSetCellTableViewCell = @"AddSetTableViewCell";
|
|||
[self.navigationController popViewControllerAnimated:YES];
|
||||
}
|
||||
|
||||
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
|
||||
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
|
||||
{
|
||||
return 1;
|
||||
|
|
|
@ -28,11 +28,6 @@
|
|||
return self;
|
||||
}
|
||||
|
||||
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
|
||||
// Used to display add bookmarks hint
|
||||
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
|
||||
{
|
||||
|
@ -135,9 +130,12 @@
|
|||
return cell;
|
||||
}
|
||||
|
||||
- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
|
||||
- (void)viewWillTransitionToSize:(CGSize)size
|
||||
withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
|
||||
{
|
||||
[self.tableView reloadRowsAtIndexPaths:self.tableView.indexPathsForVisibleRows withRowAnimation:UITableViewRowAnimationFade];
|
||||
[coordinator animateAlongsideTransition:^(id<UIViewControllerTransitionCoordinatorContext> context) {
|
||||
[self.tableView reloadRowsAtIndexPaths:self.tableView.indexPathsForVisibleRows withRowAnimation:UITableViewRowAnimationFade];
|
||||
} completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {}];
|
||||
}
|
||||
|
||||
- (NSString *)truncateString:(NSString *)string toWidth:(CGFloat)width withFont:(UIFont *)font
|
||||
|
|
|
@ -36,11 +36,14 @@ static NSString * const kAlertControllerNibIdentifier = @"MWMAlertViewController
|
|||
return self;
|
||||
}
|
||||
|
||||
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
|
||||
duration:(NSTimeInterval)duration
|
||||
- (void)viewWillTransitionToSize:(CGSize)size
|
||||
withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
|
||||
{
|
||||
for (MWMAlert * alert in self.view.subviews)
|
||||
[alert rotate:toInterfaceOrientation duration:duration];
|
||||
auto const orient = size.width > size.height ? UIInterfaceOrientationLandscapeLeft : UIInterfaceOrientationPortrait;
|
||||
[coordinator animateAlongsideTransition:^(id<UIViewControllerTransitionCoordinatorContext> context) {
|
||||
for (MWMAlert * alert in self.view.subviews)
|
||||
[alert rotate:orient duration:context.transitionDuration];
|
||||
} completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {}];
|
||||
}
|
||||
|
||||
#pragma mark - Actions
|
||||
|
@ -113,10 +116,7 @@ static NSString * const kAlertControllerNibIdentifier = @"MWMAlertViewController
|
|||
|
||||
- (void)presentRoutingDisclaimerAlertWithOkBlock:(TMWMVoidBlock)block
|
||||
{
|
||||
[self
|
||||
displayAlert:[MWMAlert routingDisclaimerAlertWithInitialOrientation:self.ownerViewController
|
||||
.interfaceOrientation
|
||||
okBlock:block]];
|
||||
[self displayAlert:[MWMAlert routingDisclaimerAlertWithOkBlock:block]];
|
||||
}
|
||||
|
||||
- (void)presentDisabledLocationAlert { [self displayAlert:MWMAlert.disabledLocationAlert]; }
|
||||
|
|
|
@ -18,8 +18,7 @@ using TMWMDownloadBlock = void (^)(storage::TCountriesVec const &, TMWMVoidBlock
|
|||
+ (MWMAlert *)rateAlert;
|
||||
+ (MWMAlert *)facebookAlert;
|
||||
+ (MWMAlert *)locationAlert;
|
||||
+ (MWMAlert *)routingDisclaimerAlertWithInitialOrientation:(UIInterfaceOrientation)orientation
|
||||
okBlock:(TMWMVoidBlock)block;
|
||||
+ (MWMAlert *)routingDisclaimerAlertWithOkBlock:(TMWMVoidBlock)block;
|
||||
+ (MWMAlert *)disabledLocationAlert;
|
||||
+ (MWMAlert *)noWiFiAlertWithOkBlock:(TMWMVoidBlock)okBlock;
|
||||
+ (MWMAlert *)noConnectionAlert;
|
||||
|
|
|
@ -21,10 +21,9 @@
|
|||
return [MWMDefaultAlert point2PointAlertWithOkBlock:block needToRebuild:needToRebuild];
|
||||
}
|
||||
|
||||
+ (MWMAlert *)routingDisclaimerAlertWithInitialOrientation:(UIInterfaceOrientation)orientation
|
||||
okBlock:(TMWMVoidBlock)block
|
||||
+ (MWMAlert *)routingDisclaimerAlertWithOkBlock:(TMWMVoidBlock)block
|
||||
{
|
||||
return [MWMRoutingDisclaimerAlert alertWithInitialOrientation:orientation okBlock:block];
|
||||
return [MWMRoutingDisclaimerAlert alertWithOkBlock:block];
|
||||
}
|
||||
|
||||
+ (MWMAlert *)disabledLocationAlert { return [MWMDefaultAlert disabledLocationAlert]; }
|
||||
|
@ -176,18 +175,6 @@
|
|||
[self willRotateToInterfaceOrientation:toInterfaceOrientation];
|
||||
}
|
||||
|
||||
CGAffineTransform rotation(UIInterfaceOrientation orientation)
|
||||
{
|
||||
switch (orientation)
|
||||
{
|
||||
case UIInterfaceOrientationLandscapeLeft: return CGAffineTransformMakeRotation(-M_PI_2);
|
||||
case UIInterfaceOrientationLandscapeRight: return CGAffineTransformMakeRotation(M_PI_2);
|
||||
case UIInterfaceOrientationPortraitUpsideDown: return CGAffineTransformMakeRotation(M_PI);
|
||||
case UIInterfaceOrientationUnknown:
|
||||
case UIInterfaceOrientationPortrait: return CGAffineTransformIdentity;
|
||||
}
|
||||
}
|
||||
|
||||
- (void)addControllerViewToWindow
|
||||
{
|
||||
UIWindow * window = UIApplication.sharedApplication.delegate.window;
|
||||
|
@ -204,7 +191,8 @@ CGAffineTransform rotation(UIInterfaceOrientation orientation)
|
|||
view.frame = ownerViewController.view.bounds;
|
||||
[ownerViewController.view addSubview:view];
|
||||
[self addControllerViewToWindow];
|
||||
[self rotate:ownerViewController.interfaceOrientation duration:0.0];
|
||||
auto const orientation = [[UIApplication sharedApplication] statusBarOrientation];
|
||||
[self rotate:orientation duration:0.0];
|
||||
[view addSubview:self];
|
||||
self.frame = view.bounds;
|
||||
}
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
@interface MWMRoutingDisclaimerAlert : MWMAlert
|
||||
|
||||
+ (instancetype)alertWithInitialOrientation:(UIInterfaceOrientation)orientation
|
||||
okBlock:(TMWMVoidBlock)block;
|
||||
+ (instancetype)alertWithOkBlock:(TMWMVoidBlock)block;
|
||||
|
||||
@end
|
||||
|
|
|
@ -18,8 +18,7 @@ static NSString * const kStatisticsEvent = @"Routing Disclaimer Alert";
|
|||
|
||||
@implementation MWMRoutingDisclaimerAlert
|
||||
|
||||
+ (instancetype)alertWithInitialOrientation:(UIInterfaceOrientation)orientation
|
||||
okBlock:(TMWMVoidBlock)block
|
||||
+ (instancetype)alertWithOkBlock:(TMWMVoidBlock)block
|
||||
{
|
||||
[Statistics logEvent:kStatisticsEvent withParameters:@{kStatAction : kStatOpen}];
|
||||
MWMRoutingDisclaimerAlert * alert =
|
||||
|
|
|
@ -265,12 +265,6 @@ typedef NS_ENUM(NSUInteger, MWMBottomMenuViewCell) {
|
|||
|
||||
#pragma mark - Layout
|
||||
|
||||
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
|
||||
duration:(NSTimeInterval)duration
|
||||
{
|
||||
[self.additionalButtons reloadData];
|
||||
}
|
||||
|
||||
- (void)viewWillTransitionToSize:(CGSize)size
|
||||
withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
|
||||
{
|
||||
|
|
|
@ -33,8 +33,6 @@
|
|||
|
||||
- (void)mwm_refreshUI;
|
||||
|
||||
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
|
||||
duration:(NSTimeInterval)duration;
|
||||
- (void)viewWillTransitionToSize:(CGSize)size
|
||||
withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator;
|
||||
|
||||
|
|
|
@ -117,15 +117,6 @@ extern NSString * const kAlohalyticsTapEventKey;
|
|||
[self.placePageManager mwm_refreshUI];
|
||||
}
|
||||
|
||||
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
|
||||
duration:(NSTimeInterval)duration
|
||||
{
|
||||
[self.menuController willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration];
|
||||
// Workaround needs for setting correct left bound while landscape place page is open.
|
||||
self.navigationManager.leftBound = 0;
|
||||
[self.placePageManager willRotateToInterfaceOrientation:toInterfaceOrientation];
|
||||
}
|
||||
|
||||
- (void)viewWillTransitionToSize:(CGSize)size
|
||||
withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
|
||||
{
|
||||
|
|
|
@ -249,7 +249,8 @@ WeekDayView getWeekDayView()
|
|||
|
||||
- (IBAction)toggleButtonTap
|
||||
{
|
||||
[self.delegate setOpeningHoursCellExpanded:!self.delegate.openingHoursCellExpanded];
|
||||
id<MWMPlacePageOpeningHoursCellProtocol> delegate = self.delegate;
|
||||
[delegate setOpeningHoursCellExpanded:!delegate.openingHoursCellExpanded];
|
||||
|
||||
// Workaround for slow devices.
|
||||
// Major QA can tap multiple times before first segue call is performed.
|
||||
|
|
|
@ -87,20 +87,6 @@ BOOL isOffsetInButton(CGFloat offset, MWMSearchTabButtonsView * button)
|
|||
|
||||
#pragma mark - Layout
|
||||
|
||||
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
|
||||
duration:(NSTimeInterval)duration
|
||||
{
|
||||
self.isRotating = YES;
|
||||
[UIView animateWithDuration:duration
|
||||
animations:^{
|
||||
[self refreshScrollPosition];
|
||||
}
|
||||
completion:^(BOOL finished) {
|
||||
[self refreshScrollPosition];
|
||||
self.isRotating = NO;
|
||||
}];
|
||||
}
|
||||
|
||||
- (void)viewWillTransitionToSize:(CGSize)size
|
||||
withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
|
||||
{
|
||||
|
|
|
@ -113,11 +113,4 @@ namespace
|
|||
return YES;
|
||||
}
|
||||
|
||||
#pragma mark - Properties
|
||||
|
||||
- (NSString *)text
|
||||
{
|
||||
return self.textField.text;
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
|
@ -174,16 +174,19 @@ using namespace osmoh;
|
|||
if (isSimpleMode && oh)
|
||||
isSimpleMode = MakeTimeTableSet(osmoh::OpeningHours(oh.UTF8String), timeTableSet);
|
||||
|
||||
delegate.advancedEditor.hidden = isSimpleMode;
|
||||
UITableView * tv = delegate.tableView;
|
||||
UIButton * toggleModeButton = delegate.toggleModeButton;
|
||||
|
||||
if (isSimpleMode)
|
||||
{
|
||||
_isSimpleMode = YES;
|
||||
delegate.tableView.hidden = NO;
|
||||
delegate.advancedEditor.hidden = YES;
|
||||
[delegate.toggleModeButton setTitle:L(@"editor_time_advanced") forState:UIControlStateNormal];
|
||||
tv.hidden = NO;
|
||||
[toggleModeButton setTitle:L(@"editor_time_advanced") forState:UIControlStateNormal];
|
||||
_sections = [NSMutableArray arrayWithCapacity:timeTableSet.Size()];
|
||||
while (self.sections.count < timeTableSet.Size())
|
||||
[self addSection];
|
||||
[delegate.tableView reloadData];
|
||||
[tv reloadData];
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -192,9 +195,8 @@ using namespace osmoh;
|
|||
[self updateOpeningHours];
|
||||
_isSimpleMode = NO;
|
||||
}
|
||||
delegate.tableView.hidden = YES;
|
||||
delegate.advancedEditor.hidden = NO;
|
||||
[delegate.toggleModeButton setTitle:L(@"editor_time_simple") forState:UIControlStateNormal];
|
||||
tv.hidden = YES;
|
||||
[toggleModeButton setTitle:L(@"editor_time_simple") forState:UIControlStateNormal];
|
||||
MWMTextView * ev = delegate.editorView;
|
||||
ev.text = delegate.openingHours;
|
||||
[ev becomeFirstResponder];
|
||||
|
|
|
@ -40,44 +40,46 @@
|
|||
|
||||
- (void)configWithRow:(place_page::MetainfoRows)row data:(MWMPlacePageData *)data;
|
||||
{
|
||||
using place_page::MetainfoRows;
|
||||
self.rowType = row;
|
||||
self.data = data;
|
||||
NSString * name;
|
||||
switch (row)
|
||||
{
|
||||
case place_page::MetainfoRows::Address:
|
||||
case MetainfoRows::Address:
|
||||
self.toggleImage.hidden = YES;
|
||||
name = @"address";
|
||||
break;
|
||||
case place_page::MetainfoRows::Phone:
|
||||
case MetainfoRows::Phone:
|
||||
self.toggleImage.hidden = YES;
|
||||
name = @"phone_number";
|
||||
break;
|
||||
case place_page::MetainfoRows::Website:
|
||||
case MetainfoRows::Website:
|
||||
self.toggleImage.hidden = YES;
|
||||
name = @"website";
|
||||
break;
|
||||
case place_page::MetainfoRows::Email:
|
||||
case MetainfoRows::Email:
|
||||
self.toggleImage.hidden = YES;
|
||||
name = @"email";
|
||||
break;
|
||||
case place_page::MetainfoRows::Cuisine:
|
||||
case MetainfoRows::Cuisine:
|
||||
self.toggleImage.hidden = YES;
|
||||
name = @"cuisine";
|
||||
break;
|
||||
case place_page::MetainfoRows::Operator:
|
||||
case MetainfoRows::Operator:
|
||||
self.toggleImage.hidden = YES;
|
||||
name = @"operator";
|
||||
break;
|
||||
case place_page::MetainfoRows::Internet:
|
||||
case MetainfoRows::Internet:
|
||||
self.toggleImage.hidden = YES;
|
||||
name = @"wifi";
|
||||
break;
|
||||
case place_page::MetainfoRows::Coordinate:
|
||||
case MetainfoRows::Coordinate:
|
||||
self.toggleImage.hidden = NO;
|
||||
name = @"coordinate";
|
||||
break;
|
||||
case place_page::MetainfoRows::OpeningHours: NSAssert(false, @"Incorrect cell type!"); break;
|
||||
case MetainfoRows::ExtendedOpeningHours:
|
||||
case MetainfoRows::OpeningHours: NSAssert(false, @"Incorrect cell type!"); break;
|
||||
}
|
||||
[self configWithIconName:name data:[data stringForRow:row]];
|
||||
}
|
||||
|
@ -128,28 +130,29 @@
|
|||
|
||||
- (IBAction)cellTap
|
||||
{
|
||||
using place_page::MetainfoRows;
|
||||
switch (self.rowType)
|
||||
{
|
||||
case place_page::MetainfoRows::Phone:
|
||||
case MetainfoRows::Phone:
|
||||
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatCallPhoneNumber)];
|
||||
break;
|
||||
case place_page::MetainfoRows::Website:
|
||||
case MetainfoRows::Website:
|
||||
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatOpenSite)];
|
||||
break;
|
||||
case place_page::MetainfoRows::Email:
|
||||
case MetainfoRows::Email:
|
||||
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatSendEmail)];
|
||||
break;
|
||||
case place_page::MetainfoRows::Coordinate:
|
||||
case MetainfoRows::Coordinate:
|
||||
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatToggleCoordinates)];
|
||||
[MWMPlacePageData toggleCoordinateSystem];
|
||||
[self changeText:[self.data stringForRow:self.rowType]];
|
||||
break;
|
||||
|
||||
case place_page::MetainfoRows::Cuisine:
|
||||
case place_page::MetainfoRows::Operator:
|
||||
case place_page::MetainfoRows::OpeningHours:
|
||||
case place_page::MetainfoRows::Address:
|
||||
case place_page::MetainfoRows::Internet: break;
|
||||
case MetainfoRows::ExtendedOpeningHours:
|
||||
case MetainfoRows::Cuisine:
|
||||
case MetainfoRows::Operator:
|
||||
case MetainfoRows::OpeningHours:
|
||||
case MetainfoRows::Address:
|
||||
case MetainfoRows::Internet: break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -235,25 +235,11 @@ BOOL gIsFirstMyPositionMode = YES;
|
|||
#pragma mark - ViewController lifecycle
|
||||
|
||||
- (void)dealloc { [[NSNotificationCenter defaultCenter] removeObserver:self]; }
|
||||
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
|
||||
{
|
||||
return YES; // We support all orientations
|
||||
}
|
||||
|
||||
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
|
||||
duration:(NSTimeInterval)duration
|
||||
{
|
||||
[self.alertController willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration];
|
||||
[self.controlsManager willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration];
|
||||
}
|
||||
|
||||
- (void)viewWillTransitionToSize:(CGSize)size
|
||||
withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
|
||||
{
|
||||
[self.alertController willRotateToInterfaceOrientation:(size.width > size.height)
|
||||
? UIInterfaceOrientationLandscapeLeft
|
||||
: UIInterfaceOrientationPortrait
|
||||
duration:kDefaultAnimationDuration];
|
||||
[self.alertController viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
|
||||
[self.controlsManager viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
|
||||
[self.pageViewController viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
|
||||
}
|
||||
|
@ -348,15 +334,6 @@ BOOL gIsFirstMyPositionMode = YES;
|
|||
{
|
||||
[super viewWillDisappear:animated];
|
||||
self.controlsManager.menuRestoreState = self.controlsManager.menuState;
|
||||
[[NSNotificationCenter defaultCenter] addObserver:self
|
||||
selector:@selector(orientationChanged:)
|
||||
name:UIDeviceOrientationDidChangeNotification
|
||||
object:nil];
|
||||
}
|
||||
|
||||
- (void)orientationChanged:(NSNotification *)notification
|
||||
{
|
||||
[self willRotateToInterfaceOrientation:self.interfaceOrientation duration:0.];
|
||||
}
|
||||
|
||||
- (BOOL)prefersStatusBarHidden { return self.apiBar.isVisible; }
|
||||
|
|
|
@ -46,11 +46,6 @@
|
|||
self.view = webView;
|
||||
}
|
||||
|
||||
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
|
||||
- (BOOL)webView:(UIWebView *)inWeb shouldStartLoadWithRequest:(NSURLRequest *)inRequest navigationType:(UIWebViewNavigationType)inType
|
||||
{
|
||||
if (self.openInSafari && inType == UIWebViewNavigationTypeLinkClicked
|
||||
|
|
|
@ -9,9 +9,9 @@
|
|||
|
||||
@interface SwitchCell : MWMTableViewCell
|
||||
|
||||
@property (weak, nonatomic) IBOutlet UILabel * titleLabel;
|
||||
@property (weak, nonatomic) IBOutlet UISwitch * switchButton;
|
||||
@property(weak, nonatomic) IBOutlet UILabel * titleLabel;
|
||||
@property(weak, nonatomic) IBOutlet UISwitch * switchButton;
|
||||
|
||||
@property (weak) id<SwitchCellDelegate> delegate;
|
||||
@property(weak, nonatomic) id<SwitchCellDelegate> delegate;
|
||||
|
||||
@end
|
||||
|
|
Loading…
Add table
Reference in a new issue