を示していない私は、次のコードを持っている:UIImageViewイメージ
@interface NeighborProfileViewController : UIViewController {
UIImageView * profPic;
UITextView * text;
UIButton * buzz;
NSString * uid;
NSMutableData *responseData;
NSDictionary * results;
}
@property (nonatomic, retain) IBOutlet UIImageView * profPic;
@property (nonatomic, retain) IBOutlet UITextView * text;
@property (nonatomic, retain) IBOutlet UIButton * buzz;
@property (nonatomic, retain) NSString * uid;
@end
は、ここで私は私が私が正しくIB
経由UIImageView
を有線考える.m
ファイル
@implementation NeighborProfileViewController
@synthesize uid;
@synthesize profPic;
@synthesize buzz;
@synthesize text;
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
[super viewDidLoad];
NSURL *url = //some URL to the picture;
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *img = [[[UIImage alloc] initWithData:data] autorelease];
self.profPic = [[UIImageView alloc] initWithImage: img];
}
にviewDidLoad
に持っているものです。私はUIImageView
からファイル所有者のprofPicへのアウトレットを持っています。私は間違って何をしていますか?
私の頭を数時間叩いていました。イメージを設定する前にイメージビューを再度割り当てていました。ありがとう@thelaws – sErVerdevIL