私は FB SDK を使用しており、私のアプリから FB 投稿に画像をアップロードしているときにエラーが発生しました。
ImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 65, 65)];
ImageView.center = CGPointMake(42, 43);
[View addSubview:ImageView];
そして私のFB投稿の方法で私はこれをしました
UIImage *image = [[UIImage alloc]init];
image = ImageView.image;
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithCapacity:3];
[params setObject:@"LINK_HERE" forKey:@"link"];
// due to this line below, i am getting an error :
// "[UIImage length]: unrecognized selector sent to instance 0x170fa0e0"
// and if use http link instead of image(UIImage) it works, but i want to use my image
[params setObject:image forKey:@"picture"];
[params setObject:@"NAME_HERE" forKey:@"name"];
[params setObject:@"DEC_HERE" forKey:@"description"];
// Invoke the dialog
[self.facebook dialog:@"feed" andParams:params andDelegate:self];
このコード内で UIImage をどのように使用すればよいですか?