diff --git a/iOS/offlineguides/ArticleVC.mm b/iOS/offlineguides/ArticleVC.mm index 0c22eab..683cab3 100644 --- a/iOS/offlineguides/ArticleVC.mm +++ b/iOS/offlineguides/ArticleVC.mm @@ -155,7 +155,7 @@ { for (UIView * sub in self.searchBar.subviews) if ([sub isKindOfClass:NSClassFromString(@"UISearchBarBackground")]) - [sub removeFromSuperview]; + [sub removeFromSuperview]; } - (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation diff --git a/iOS/offlineguides/GuideCell.h b/iOS/offlineguides/GuideCell.h index e4795b9..22849ea 100644 --- a/iOS/offlineguides/GuideCell.h +++ b/iOS/offlineguides/GuideCell.h @@ -1,11 +1,3 @@ -// -// GuideCell.h -// offlineguides -// -// Created by Kirill on 08/08/2013. -// Copyright (c) 2013 offlineguides. All rights reserved. -// - #import @interface GuideCell : UITableViewCell diff --git a/iOS/offlineguides/GuideCell.m b/iOS/offlineguides/GuideCell.m index b039688..3b6d0fa 100644 --- a/iOS/offlineguides/GuideCell.m +++ b/iOS/offlineguides/GuideCell.m @@ -1,11 +1,3 @@ -// -// GuideCell.m -// offlineguides -// -// Created by Kirill on 08/08/2013. -// Copyright (c) 2013 offlineguides. All rights reserved. -// - #import "GuideCell.h" @implementation GuideCell diff --git a/iOS/offlineguides/GuideVC.mm b/iOS/offlineguides/GuideVC.mm index ed20911..41d90e5 100644 --- a/iOS/offlineguides/GuideVC.mm +++ b/iOS/offlineguides/GuideVC.mm @@ -162,6 +162,6 @@ shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherG -(BOOL)isImage:(NSString *)pageUrl { - return (([pageUrl rangeOfString:@".svg"].location != NSNotFound) || ([pageUrl rangeOfString:@".png"].location != NSNotFound) || ([pageUrl rangeOfString:@".jpg"].location != NSNotFound)); + return (([pageUrl rangeOfString:@".svg"].location != NSNotFound) || ([pageUrl rangeOfString:@".png"].location != NSNotFound) || ([pageUrl rangeOfString:@".jpg"].location != NSNotFound)); } @end