Show an image in the alert body of a local notification

喜夏-厌秋 提交于 2019-12-21 03:02:12

问题


I am using Local Notifications, but I want to put an image in the message body of the alert. How can I do that?


回答1:


I also searched for the same question. And found that we can't customize the UILocalNotification, so I handled this in application:didReceiveLocalNotification: by showing custom UIAlertView.




回答2:


This should work. Give it a whirl:

UIAlertView *successAlert = [[UIAlertView alloc] initWithTitle:title 
message:message
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil]; UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(220, 10, 40, 40)]; UIImage *smiley= [UIImage imageNamed:@"smiley.png"]; [imageView setImage:smiley]; [smiley release]; [successAlert addSubview:imageView]; [imageView release]; [successAlert show]; [successAlert release];

Good luck,

Aurum Aquila




回答3:


If you are using simple images like question mark, notification, etc. I suggest Ext JS which has a Icon type alert.

You can add your images as well.



来源:https://stackoverflow.com/questions/4941949/show-an-image-in-the-alert-body-of-a-local-notification

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!