2016-12-21 28 views
2

Hudのリングとテキストの色を別々に表示したいです。私はhudスタイルSVProgressHUDStyleCustomを使用していますが、目的の結果を得ることはできません。SVProgressHUDStyleCustomを使用してリングとテキストの色を変更する方法

私のコードは以下の通りです:

[SVProgressHUD setDefaultStyle:SVProgressHUDStyleCustom]; 
[SVProgressHUD setRingThickness:5.0]; 
[SVProgressHUD setForegroundColor:[UIColor redColor]]; 
[SVProgressHUD setFont:[UIFont ProximaNovaA_Light:16.0]]; 
[SVProgressHUD setCornerRadius:3]; 
[SVProgressHUD setBackgroundColor:[UIColor whiteColor]]; 

すべてのヘルプは大歓迎だろう。

答えて

0

は、このコードは、最新のSVProgressHudで作業されていません。この

[[SVProgressHUD appearance] setHudBackgroundColor:[[UIColor greenColor] colorWithAlphaComponent:0.4]]; 
[[SVProgressHUD appearance] setHudForegroundColor:[UIColor yellowColor]]; 
[[SVProgressHUD appearance] setHudFont:[UIFont fontWithName:@"MarkerFelt-Wide" size:16]]; 
[[SVProgressHUD appearance] setHudStatusShadowColor:[UIColor greenColor]]; 
[SVProgressHUD showSuccessWithStatus:@"Great Success!"]; 
+0

を試してみてください。 – Irfan

-1
[[SVProgressHUD appearance] setHudBackgroundColor:[[UIColor greenColor] colorWithAlphaComponent:0.4]]; 

[[SVProgressHUD appearance] setHudForegroundColor:[UIColor yellowColor]]; 
[[SVProgressHUD appearance] setHudFont:[UIFont fontWithName:@"MarkerFelt-Wide" size:16]]; 
関連する問題