]> git.saurik.com Git - iphone-api.git/blob - UIKit/UIDelayedAction.h
Minor commit for Optimo.
[iphone-api.git] / UIKit / UIDelayedAction.h
1 /*
2 * Generated by class-dump 3.1.2.
3 *
4 * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2007 by Steve Nygard.
5 */
6
7 #import <Foundation/NSObject.h>
8
9 @class NSTimer;
10
11 @interface UIDelayedAction : NSObject
12 {
13 id m_target;
14 SEL m_action;
15 id m_userInfo;
16 double m_delay;
17 NSTimer *m_timer;
18 BOOL m_canceled;
19 }
20
21 - (id)initWithTarget:(id)fp8 action:(SEL)fp12 userInfo:(id)fp16 delay:(double)fp20;
22 - (void)dealloc;
23 - (void)touch;
24 - (void)touchWithDelay:(double)fp8;
25 - (void)cancel;
26 - (id)userInfo;
27 - (BOOL)scheduled;
28 - (void)setTarget:(id)fp8;
29 - (id)target;
30 - (void)timerFired:(id)fp8;
31
32 @end
33