Skip to content

Instantly share code, notes, and snippets.

View kphillpotts's full-sized avatar

Kym Phillpotts kphillpotts

View GitHub Profile
@HeathHopkins
HeathHopkins / ExtensionMethods.cs
Last active April 27, 2022 13:33
Xamarin.iOS Extension Methods
using System;
using MonoTouch.UIKit;
namespace System
{
public static class ExtensionMethods
{
public static UIColor ToUIColor(this string hexString)
{
hexString = hexString.Replace("#", "");