iOS 7 Style Progress Meter in C#
On iOS 7, when you download or update an app from the App Store, there’s a small circular progress indicator that shows how complete the download is. It’s simple, compact, and provides information well. Making a version of this is incredibly easy using C# and Xamarin on your iOS app. Layers, Everywhere Every UIView has a property called Layer exposed that is responsible for what’s rendered inside that view. It’s of type CALayer and is a tree hierarchy, just like the view heirarchy.…