AppDelegate.m
// 画像
NSBundle* bundle = [NSBundle mainBundle];
NSString* path = [bundle pathForResource:@"test" ofType:@"jpg"];
UIImage *img = [UIImage imageWithContentsOfFile:path];
// UIImageViewにセット
UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(10.0, 10.0, 128.0, 128.0)];
imgView.clipsToBounds = YES;
imgView.contentMode = UIViewContentModeScaleAspectFill;
imgView.image = img;
// 表示
[self.window addSubview:imgView];