I switched to remote hosted builder, and my nav color is different than what I set. Does it because hosted builder is not running on xcode 13? I am using b4i 7.80. How must I handle this, sometimes I use hosted buidler and sometimes I use local builder ?
I switched to remote hosted builder, and my nav color is different than what I set. Does it because hosted builder is not running on xcode 13? I am using b4i 7.80. How must I handle this, sometimes I use hosted buidler and sometimes I use local builder ?
SetNavColors(0xFF00BCD4)
Public Sub SetNavColors(clr As Int)
Try
Dim no As NativeObject = NavControl
no.GetField("navigationBar").RunMethod("setBarTintColor:", Array(no.ColorToUIColor(clr)))
no.GetField("view").As(View).Color = clr
no.GetField("navigationBar").RunMethod("setTintColor:", Array(no.ColorToUIColor(clr)))
Catch
Log(LastException)
End Try
End Sub