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

enter image description here

appearance api

uipagecontrol.appearance.pageindicatortintcolor = uicolor.white; uipagecontrol.appearance.currentpageindicatortintcolor = uicolor.red; 

Comments

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

apache - How do I stop my index.php being run twice for every user -