Skip to content

Instantly share code, notes, and snippets.

@trinnguyen
Created July 1, 2016 11:02
Show Gist options
  • Save trinnguyen/4e2a4443d7940c7eb2117498a0a0b0b8 to your computer and use it in GitHub Desktop.
Save trinnguyen/4e2a4443d7940c7eb2117498a0a0b0b8 to your computer and use it in GitHub Desktop.
Add TopLine to UITabbar
//Add line
CALayer topBorder = CALayer.Create();
topBorder.Frame = new CoreGraphics.CGRect(0, 0, View.Bounds.Width, 1);
topBorder.BackgroundColor = UIColor.FromRGB(128, 128, 128).CGColor;
TabBar.Layer.AddSublayer(topBorder);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment