このステートメントの識別子を予期した赤い警告メッセージを取得しています
CALayer = ImageView.layer;
以下のコードで上記のステートメントを使用する
// load all the frames of our animation
ImageView.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"2a.png"],
[UIImage imageNamed:@"2b.png"],
[UIImage imageNamed:@"2c.png"],
nil];
// all frames will execute in 28 seconds
ImageView.animationDuration = 28;
// start animating
[ImageView startAnimating];
[CALayer = [ImageView.layer]];
ImageView.layer.borderWidth = 2;
ImageView.layer.borderColor = [[UIColor whiteColor]CGColor];
[ImageView.layer setMasksToBounds:YES];
[ImageView.layer setCornerRadius:15.0f];
[self.view addSubview:ImageView];
ここに何が欠けていますか。任意のアイデアをいただければ幸いです。
ありがとう。