// // IFTweetController.h // MobileTwitterrific // // Created by Martin Gordon on 8/21/07. // Copyright 2007 Martin Gordon. All rights reserved. // #import #import #import #import #import "MobileTwitterrificApp.h" @interface IFTweetController : NSObject { MobileTwitterrificApp *controller; UIView *_oldContentView; int currentIndex; } - (id)initWithAppController:(MobileTwitterrificApp *)appController; - (void)showTweet; - (void)showTweetAfterCurrent; - (void)showTweetBeforeCurrent; - (void)hideTweet; // Notifications #define TWEET_SELECTION_CHANGED @"IFTweetSelectionChanged" @end