This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// CLLocation+Simulator.h | |
// had | |
// | |
// Created by Shane Zatezalo on 7/13/11. | |
// Copyright 2011 Lottadot, LLC. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
#import <CoreLocation/CoreLocation.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/trptcolin/consistency_fail | |
https://github.com/dsboulder/query_reviewer | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/Developer/Applications/Xcode.app/Contents/MacOS/Xcode *.xcodeproj & | |
File: /SourceCache/DevToolsBase/DevToolsBase-1763/pbxcore/Target.subproj/PBXTarget.m | |
Line: 4113 | |
Object: <PBXNativeTarget:0x200a1fd00> | |
Method: targetBuildContext | |
Assertion failed: (nil != [self project]) && ![[self project] isClosed] | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ([UIDevice instancesRespondToSelector:@selector(userInterfaceIdiom)] | |
&& [[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) { | |
// on iPad, running as iPad | |
} else { | |
// either not in 3.2, or on an iPhone, or on iPad in iPhone compatability mode |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
if [ "$BUILD_STYLE" == "Debug" ]; then | |
echo "Skipping debug" | |
exit 0; | |
fi | |
if [ "$EFFECTIVE_PLATFORM_NAME" == "-iphonesimulator" ]; then | |
echo "Skipping simulator build" | |
exit 0; |
NewerOlder