// // IFTweetView.h // MobileTwitterrific // // Created by Craig Hockenberry on 9/4/07. // // Copyright (c) 2007, The Iconfactory. All rights reserved. // #import #import //#import #import "IFURLImageView.h" @interface IFTweetView : UIView { #if 0 UITextLabel *_userNameLabel; UITextLabel *_textLabel; #else UITextView *_tweetTextView; #endif IFURLImageView *_avatarImageView; NSDictionary *_content; } - (void)setContent:(NSDictionary *)newContent; @end