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
// | |
// VITextView.h | |
// | |
// Created by Dan Brajkovic on 11/13/12. | |
// Copyright (c) 2012 VOKAL Interactive. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> | |
@interface VITextView : UITextView |
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
@interface NSMutableArray (Shuffle) | |
- (void)shuffle; | |
@end |
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
// | |
// AsyncSenTestingKitTests.h | |
// AsyncSenTestingKitTests | |
// | |
// Created by 小野 将司 on 12/03/17. | |
// Copyright (c) 2012年 AppBankGames Inc. All rights reserved. | |
// | |
#import <SenTestingKit/SenTestingKit.h> | |
#import "SenAsyncTestCase.h" |
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
// | |
// UIView+TagExtensions.h | |
// | |
// Created by Daniel Brajkovic on 2/19/12. | |
#import <UIKit/UIKit.h> | |
@interface UIView (TagExtensions) | |
- (UIButton *)buttonWithTag:(NSInteger)aTag; |
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
2012-02-28 15:09:52.944 Untitled[27437:707] { | |
"#business_information" = { | |
"-moz-text-shadow" = "1px 1px 1px #333333"; | |
"-ms-text-shadow" = "1px 1px 1px #333333"; | |
"-o-text-shadow" = "1px 1px 1px #333333"; | |
"-webkit-text-shadow" = "1px 1px 1px #333333"; | |
"background-color" = red; | |
"background-image" = "none !important"; | |
"border-top" = "1px solid #fe8184"; | |
color = "#fff !important"; |
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
@interface UIColor (Hex) | |
+ (UIColor *)colorWithHex:(NSString *)hex alpha:(CGFloat)alpha; | |
- (UIColor *)initWithHex:(NSString *)hex alpha:(CGFloat)alpha; | |
@end |
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
+ (id)allocWithZone:(NSZone *)zone { | |
return [[self sharedManager] retain]; | |
} | |
- (id)copyWithZone:(NSZone *)zone { | |
return self; | |
} | |
- (id)retain { | |
return self; | |
} | |
- (unsigned)retainCount { |
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
var map; | |
var geocoder; | |
function addAddressToMap(response) | |
{ | |
map.clearOverlays(); | |
if (!response || response.Status.code != 200) | |
{ | |
alert("Sorry, we were unable to geocode that address"); | |
} |
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
var map; | |
var geocoder; | |
function addAddressToMap(response) | |
{ | |
map.clearOverlays(); | |
if (!response || response.Status.code != 200) | |
{ | |
alert("Sorry, we were unable to geocode that address"); | |
} |
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
@implementation ManageWatchListsController : CPObject | |
{ | |
@outlet CPTableView watchListTableView; | |
@outlet CPButtonBar buttonBar; | |
CPArray watchLists; | |
var selectedWatchList; | |
} | |
-(void)init | |
{ |
NewerOlder