Skip to content

Instantly share code, notes, and snippets.

@skram
skram / ARCHelper.h
Created April 27, 2012 03:04 — forked from nicklockwood/ARCHelper.h
ARC Helper
//
// ARC Helper
//
// Version 1.3
//
// Created by Nick Lockwood on 05/01/2012.
// Copyright 2012 Charcoal Design
//
// Distributed under the permissive zlib license
// Get the latest version from here:
@skram
skram / RoundedRectLabel.h
Created March 30, 2012 09:01 — forked from digerata/RoundedRectLabel.h
Create a UILabel with a rounded rect background like in the iPhone Mail app. (Much faster than using UILabel.layer.cornerRadius)
//
// RoundedRectLabel.h
//
#import <UIKit/UIKit.h>
@interface CountLabel : UILabel {
NSInteger cornerRadius;
UIColor *rectColor;
}