I have this code in view controller but the button for dial number is not run and the image view not appear any thing
//
// ViewController.m
// EasyBuy
//
// Created by Moments on 9/2/15.
// Copyright (c) 2015 Moments. All rights reserved.
//
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
imageview.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@" http://93.95.207.34/easybuy.com/car/car2.png "]]];
// Do any additional setup after loading the view, typically from a nib.
}
- (IBAction)callus:(id)sender {
[[ UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:00962796880853"]];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
can you help me