我的目標CI是新的有一個形象,我想展示一些提示信息時,我點擊它像這個 -添加點擊事件圖像
AHolder = [[UIImageView alloc] initWithFrame:CGRectMake(5, 80, 40, 40)];
UIImage *imageA = [UIImage imageNamed:@"A.png"];
AHolder.image = imageA;
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(aPressed:) name:@"aPressed" object:nil];
[view addSubview:AHolder]
而且它的事件像這個 -
添加的圖像-(IBAction)aPressed:(id)sender
{
UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"hello" message:@"a pressed" delegate:self cancelButtonTitle:@"cancle" otherButtonTitles:@"ok",nil];
[alert show];
[alert release];
}
它不給我任何錯誤,但也當我點擊圖像時什麼也沒有發生。 請給我建議任何解決方案。