自定义很漂亮的AlertView..
?GRAlertView *alert;
??????? alert = [[GRAlertView alloc] initWithTitle:@"Alert"
?????????????????????????????????????????? message:@"Be careful!"
????????????????????????????????????????? delegate:self
???????????????????????????????? cancelButtonTitle:nil
???????????????????????????????? otherButtonTitles:@"OK", nil];
??????? alert.style = GRAlertStyleAlert;
??????? [alert setImage:@"alert.png"];
用的时候很简单,就上面的那几句话,只需要一个类型,一个图片就行了。。还有就是,引用GRAlertView 这个类就可以了。。。下面是其中三个的效果图。。。并且是动态的。
?
?
?
?
?
?
?
?