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
route add 2.16.4.0 mask 255.255.254.0 172.31.0.1 | |
route add 23.14.92.0 mask 255.255.254.0 172.31.0.1 |
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)getPhotoWithThread | |
{ | |
if (self.photoDictionnaire) | |
{ | |
dispatch_queue_t downloadQueue = dispatch_queue_create("flickr photoDowloader", NULL); | |
dispatch_async(downloadQueue, | |
^{ | |
self.photoView.image = [UIImage imageWithData: | |
[NSDatadataWithContentsOfURL: | |
[FlickrFetcherurlForPhoto:self.photoDictionnaireformat:FlickrPhotoFormatLarge]]]; |
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 "Reachability.h" | |
- (void)viewDidLoad | |
{ | |
[super viewDidLoad]; | |
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChanged:) name:kReachabilityChangedNotification object:nil]; | |
Reachability * reach = [Reachability reachabilityWithHostname:@"www.google.com"]; | |
[reach startNotifier]; | |
} | |
NewerOlder