我很確定這是一個簡單的修復,但它是如此特定我不知道在哪裏可以找到答案...我想創建一個方法,從中獲取並使用UIImage它執行的對象。Objective C方法檢索圖像
以下是調用imageView作爲對象的方法的行。
[self performSelector:@selector(method:) withObject:self.imageView afterDelay:0.0];
,這是方法...
- (void) method:(UIImage *) image {
if ([image isEqual:image1]){
x = 1;
}
if ([image isEqual:image2]){
x = 2;
}
if ([image isEqual:image3]){
x = 3;
}
if ([image isEqual:image4]){
x = 4;
}
if ([image isEqual:image5]){
x = 5;
}
...我要對這個正確的方式?謝謝!
該方法的參數是'UIImage *',而不是'UIImageView *'。 – trojanfoe 2013-02-15 09:24:33