Skip to content

Instantly share code, notes, and snippets.

@uson1x
Forked from coneybeare/gist:292381
Created January 20, 2012 10:06
Show Gist options
  • Save uson1x/1646531 to your computer and use it in GitHub Desktop.
Save uson1x/1646531 to your computer and use it in GitHub Desktop.
//
// UACellBackgroundView.h
// Ambiance
//
// Created by Matt Coneybeare on 1/31/10.
// Copyright 2010 Urban Apps LLC. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
typedef enum {
UACellBackgroundViewPositionSingle = 0,
UACellBackgroundViewPositionTop,
UACellBackgroundViewPositionBottom,
UACellBackgroundViewPositionMiddle
} UACellBackgroundViewPosition;
@interface UACellBackgroundView : UIView {
UACellBackgroundViewPosition position;
}
@property(nonatomic) UACellBackgroundViewPosition position;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment