iphone-common-codes-ccteam源代码 CCAutoDisappearView.h

//  
// CCAutoDisappearView.h
// CCFC
//
// Created by xichen on 11-12-16.
// Copyright 2011 ccteam. All rights reserved.
//

#import <UIKit/UIKit.h>

// a kind of view that can disappear automatically
@interface CCAutoDisappearView : UIView
{
UILabel *_msgLbl;
double _tm;
UIView *_superView;
UIColor *_bgColor;
}

@property(nonatomic, assign) double tm; // the time that disappear time
@property(nonatomic, assign) UIView *superView;
@property(nonatomic, retain) UILabel *msgLbl;
@property(nonatomic, retain) UIColor *bgColor;

- (void)setText:(NSString *)str;
- (void)show;

@end

googlecode链接地址(会有更新):http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCAutoDisappearView.h

posted @ 2011-12-30 10:58  cc_team  阅读(149)  评论(0编辑  收藏  举报