Created
February 2, 2010 04:39
-
-
Save coneybeare/292381 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// 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