Appearance in Xamarin.iOS -
i not able handle following assignment in xamarin.
i trying convert objective -c code xamarin follows, getting error.
here objective-c code:
uipagecontrol *pagecontrol = [uipagecontrol appearance]; pagecontrol.pageindicatortintcolor = [uicolor whitecolor]; pagecontrol.currentpageindicatortintcolor = [uicolor redcolor]; here attempt in xamarin.ios
uipagecontrol.appearance.pageindicatortintcolor = uicolor.white; uipagecontrol.appearance.currentpageindicatortintcolor = uicolor.red; 
Comments
Post a Comment