This file contains 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
// Method: What is Nearer helper function | |
// Pre-requisite: dataset loaded in the app delegate | |
-(NSDictionary *) whatIsNearer:(CLLocation *)currentLocation { | |
whichway_ipadAppDelegate *appdelegate = (whichway_ipadAppDelegate *)[[UIApplication sharedApplication] delegate]; | |
float closest_distance; | |
int linecnt = 1; | |
NSDictionary *tmpDict = [[[NSDictionary alloc] init] autorelease]; | |
for (NSDictionary *store in appdelegate.dataset) { | |
NSString *latlong = [store objectForKey:@"LatLong"]; | |
NSArray *latlongarray = [latlong componentsSeparatedByString:@","]; |
This file contains 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
- (void)viewDidLoad | |
{ | |
[[NSNotificationCenter defaultCenter] | |
addObserver:self | |
selector:@selector(keyboardWillShow:) | |
name:UIKeyboardWillShowNotification | |
object:nil]; | |
[[NSNotificationCenter defaultCenter] | |
addObserver:self | |
selector:@selector(keyboardWillHide:) |
This file contains 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
function Timer(millis, callback, _params) { | |
var params = $.extend(_params,{repeat: true,context: this}) | |
this.interval = millis; | |
this.repeat = params.repeat; | |
this.context = params.context; | |
this.args = params.args; | |
this.onTimer = callback; | |
this.callback = $.proxy(this._onTimer, this); | |
this.single = false; | |
this._reqs = 0; |
This file contains 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
#import "CLLocation (Strings).h" | |
@implementation CLLocation (Strings) | |
- (NSString *)localizedCoordinateString { | |
if (self.horizontalAccuracy < 0) { | |
return NSLocalizedString(@"DataUnavailable", @"DataUnavailable"); | |
} | |
NSString *latString = (self.coordinate.latitude < 0) ? NSLocalizedString(@"South", @"South") : NSLocalizedString(@"North", @"North"); |
This file contains 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
// A small variant of Jeff Lamarche code as seen here : http://iphonedevelopment.blogspot.com/2010/05/custom-alert-views.html | |
// | |
// CustomAlertView.m | |
// Custom Alert View | |
// | |
// Created by jeff on 5/17/10. | |
// Copyright 2010 __MyCompanyName__. All rights reserved. | |
// |
This file contains 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
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView | |
{ | |
if(_reachedEndOfFeed) return; | |
if(!_dynamicFeed) return; | |
DLog(); | |
if (!reloading) | |
{ | |
checkForRefresh = YES; // only check offset when dragging | |
} |
This file contains 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
//CORE DATA | |
//FETCHING PROCESS SNIPPET | |
NSManagedObjectContext *sharedContext = [(AppDelegate_Shared *)[[UIApplication sharedApplication] delegate] managedObjectContext]; | |
NSFetchRequest *request = [[NSFetchRequest alloc] init]; | |
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Currency" inManagedObjectContext:sharedContext]; | |
[request setEntity:entity]; | |
currencies = [[NSArray alloc ] initWithArray:[sharedContext executeFetchRequest:request error:nil]]; |
This file contains 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
// LocationServices.h | |
#import <Foundation/Foundation.h> | |
#import <CoreLocation/CoreLocation.h> | |
@interface LocationServices : NSObject <CLLocationManagerDelegate> { | |
CLLocationManager *locationManager; | |
CLLocation *currentLocation; | |
This file contains 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
<!-- Table markup--> | |
<table id="..."> | |
<!-- Table header --> | |
<thead> | |
<tr> | |
<th scope="col" id="...">...</th> | |
... |
This file contains 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
/* | |
* | |
* R.Mohammadi | |
* 13-04-2011 | |
import using: <link rel="stylesheet" href="print.css" type="text/css" media="print" /> | |
*/ | |
/* Remove unwanted elements */ | |
#header, #nav, .noprint | |
{ | |
display: none; |
OlderNewer