Skip to content

Instantly share code, notes, and snippets.

@baron
Forked from coneybeare/gist:292381
Created May 5, 2010 15:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baron/390909 to your computer and use it in GitHub Desktop.
Save baron/390909 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