Arjun Nayini
Arjun Nayini
Yup. Currently having issues with a missing FMDB.h file and a whole host of other unrelated issues due to the XCode6 beta. I'll ack back as soon as I know...
I am continuing to see this issue after bumping to 1.3.0. Any suggestions as to why this might be happening? Exception seems to be stemming from RMMapView.m (line 559): [viewController.view...
``` objc - (void)viewDidLoad { [super viewDidLoad]; [self initalizeMap]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationEnteredForeground:) name:UIApplicationWillEnterForegroundNotification object:nil]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationEnteredBackground:) name:UIApplicationDidEnterBackgroundNotification object:nil]; [[self teamFilter] addDelegate:self]; } ``` The meat happens in...
If we decided to do this I would be down to try implementing :)
Update here - in my PR where I did this, I think it may have revealed a crash in DifferenceKit. Will try to see if I can repro a smaller...
@carlbrown - Was this issue resolved by #51?
On some projects I actually add a git `precommit` hook that runs `swiftlint`, which can prevent you from commiting with style violations. (I have the bad habit of sometimes just...