Вот как я это сделал:
1) Подкласс UIB Кнопка
2) Измените слой следующим образом:
public class GalleryButton: UIButton
{
public GalleryButton (RectangleF frame) : base(frame)
{
this.Layer.CornerRadius = 12f;
this.Layer.MasksToBounds = true;
this.Layer.BorderWidth = 0f;
}