我有GRAlertView文件。我將它們導入到我的項目中。仍然我沒有得到我的輸出視圖中的自定義視圖。這是怎麼回事?我得到一個正常的警報視圖。有誰知道如何使用GRAlertView文件來自定義alertView?
-1
A
回答
0
請檢查鏈接GRAlertView。
導入文件後試試。
警報,圖標:
GRAlertView *alert = [[GRAlertView alloc] initWithTitle:@"Alert"
message:@"Be careful!"
delegate:self
cancelButtonTitle:nil
otherButtonTitles:@"OK", nil];
alert.style = GRAlertStyleAlert; // set UIAlertView style
alert.animation = GRAlertAnimationLines; // set animation type
[alert setImage:@"alert.png"]; // add icon image
[alert show];
定製警告與圖標:
GRAlertView *alert = [[GRAlertView alloc] initWithTitle:@"Custom Alert"
message:@"Merry Christmas!"
delegate:self
cancelButtonTitle:nil
otherButtonTitles:@"Close", nil];
[alert setTopColor:[UIColor colorWithRed:0.7 green:0 blue:0 alpha:1]
middleColor:[UIColor colorWithRed:0.5 green:0 blue:0 alpha:1]
bottomColor:[UIColor colorWithRed:0.4 green:0 blue:0 alpha:1]
lineColor:[UIColor colorWithRed:0.7 green:0 blue:0 alpha:1]];
[alert setFontName:@"Cochin-BoldItalic"
fontColor:[UIColor greenColor]
fontShadowColor:[UIColor colorWithRed:0.8 green:0 blue:0 alpha:1]];
[alert setImage:@"santa.png"];
[alert show];
注:複製從GRAlertView的例子,因爲OP不理解的意見
+0
是的......我理解了評論,我也嘗試了上面的代碼......仍然輸出是一樣的..沒有變化。你可以嘗試一下並檢查。 – user3202087
+0
我已將第二個代碼用於自定義提醒。在viewDidLoad中創建一個按鈕,並在選擇按鈕時,我把上面的代碼。不知何故,它的定製部分沒有得到使用,不知道如何。 – user3202087
相關問題
- 1. 有誰知道如何在Bugzilla中進行自定義搜索?
- 2. 有誰知道如何使用MPAndroidChart?
- 3. 有誰知道如何使記事本++將csproj文件自動視爲XML?
- 4. 自定義AlertView - Xcode
- 5. 有誰知道腳本引用的地方... payload.gosidekick.net ...來自哪裏?
- 6. 如何讓自定義Wordpress插件知道.po和.mo文件?
- 7. 有誰知道使用PHP和捲曲
- 8. 有誰知道如何在<select>
- 9. 如何知道誰擁有ReaderWriterLockSlim?
- 10. 有誰知道如何message.framework和mime.framework?
- 11. 如何知道誰是FirstResponder?
- 12. 有一種方法可以知道和檢查「誰來自」一個NET/HTTP請求「誰來自」/「來自哪裏」?
- 13. 有誰知道如何使用gdi +打開多頁圖標圖像文件?
- 14. 如何使fitBounds知道自定義控件
- 15. 有誰知道這2個插件是如何調用的?
- 16. 如何使用圖像和按鈕調整和自定義AlertView
- 17. 有誰知道TIdHTTP的緩存組件?
- 18. 有誰知道VS 2015的Accurev插件?
- 19. 有誰知道如何在窗口下使用python webbrowser.open
- 20. 有誰知道在J2ME上如何成功使用預處理?
- 21. 有誰知道如何在Redis中使用Lua?
- 22. 有誰知道如何在Windows上設置ZeroMQ以使用OpenPGM?
- 23. 有誰知道如何使用片段着色器
- 24. 有誰知道如何使用多接口的端口聲明?
- 25. 有誰知道如何有條件地設置字段集?
- 26. 有誰知道如何將JavaScript文件轉換爲打字稿文件?
- 27. 有誰知道用於創建Excel文件的XSL庫?
- 28. 如何知道__uint128_t定義
- 29. 如何知道組件不是自定義組件(<menuitem>)
- 30. 使IKImageView知道我的自定義NSImageRep
我相信這會幫助你https://github.com/goncz9/GRAlertView。 –
這個鏈接是我想要的那個。但是它的意思是說要在我的項目中導入這些.m和.h文件。我試過這種方式,但輸出沒有效果。 – user3202087
導入這些文件後..這是我在我的項目中使用的代碼 – user3202087