2011-02-09 73 views

回答

8

我也搜索了same question。並發現我們無法自定義UILocalNotification,所以我通過顯示自定義UIAlertViewapplication:didReceiveLocalNotification:中處理了此問題。

0

應該工作。試一試:

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];

祝你好運,

奧羅拉奎拉

+1

你還沒有理解我的問題我想定製本地通知警報Message.But感謝您的回覆 – Ali 2011-02-09 06:42:51

+1

呃......這將添加一個圖像的警報視圖。我認爲大多數用戶會同意這適合您的解釋。如果沒有,你可能想修改你的問題:) – 2011-02-09 06:48:56

+0

哦,當。我現在明白了。我誤解了它。我剛從學校回來。本地通知...不是警報視圖。我跳過了前幾句話......抱歉讓我感到困惑。 – 2011-02-09 06:55:53

-1

如果您正在使用簡單的相似圖片的問號,通知等,我建議Ext JS其中有一個圖標類型的警報。

你也可以添加你的圖片。