Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Local Notification , but I want to use Image in message body of Alert ,how can I do that?

share|improve this question

3 Answers

up vote 6 down vote accepted

I also once searched for the same. And found that we cant customize the UILocalNotification, so i have handled this in applicationDidRecievelocal otification by showing custom UIAlertView.

share|improve this answer
ok thanks ....... – Ali Feb 9 '11 at 6:52

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

share|improve this answer
1  
You have not understood my question I want to customize Local Notifications Alert Message.But thanks for reply – Ali Feb 9 '11 at 6:42
Uh... That will add an image to the alert view. I think most users will agree that this fits your explanation. If it doesn't, you might want to revise your question :) – Aurum Aquila Feb 9 '11 at 6:48
Oh, dang. I see now. I misread it. I just got back from school. Local Notification... Not Alert View. I skipped the first few words... Sorry for the confusion. – Aurum Aquila Feb 9 '11 at 6:55

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.

share|improve this answer
its IPhone's Local Notification – Ali Feb 9 '11 at 6:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.