Before upgrading to Xcode 6.4, it still works fine.
here is my code
- (NSArray*)getData{
NSMutableArray *result = [[NSMutableArray alloc] init];
NSString *path = @"http://rmfl.nagasoftware.com/api/plant_by_season.php?lang_code=1&season_id=0";
if(path){
NSLog(@"%@",path);
NSURL *json = [NSURL URLWithString:path];
NSLog(@"URL is %@",[json absoluteString]);
NSData *jsonData = [NSData dataWithContentsOfURL:json];
Here is the link to see the image from NSLog.

source
share