00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @interface NSTimer : NSObject
00010 {
00011 }
00012
00013 + (id)allocWithZone:(struct _NSZone *)fp8;
00014 + (id)timerWithTimeInterval:(double)fp8 invocation:(id)fp16 repeats:(BOOL)fp20;
00015 + (id)scheduledTimerWithTimeInterval:(double)fp8 invocation:(id)fp16 repeats:(BOOL)fp20;
00016 + (id)timerWithTimeInterval:(double)fp8 target:(id)fp16 selector:(SEL)fp20 userInfo:(id)fp24 repeats:(BOOL)fp28;
00017 + (id)scheduledTimerWithTimeInterval:(double)fp8 target:(id)fp16 selector:(SEL)fp20 userInfo:(id)fp24 repeats:(BOOL)fp28;
00018 + (id)timerWithFireDate:(id)fp8 target:(id)fp12 selector:(SEL)fp16 userInfo:(id)fp20;
00019 - (id)initWithFireDate:(id)fp8 interval:(double)fp12 target:(id)fp20 selector:(SEL)fp24 userInfo:(id)fp28 repeats:(BOOL)fp32;
00020 - (void)invalidate;
00021 - (BOOL)isValid;
00022 - (double)timeInterval;
00023 - (void)fire;
00024 - (id)fireDate;
00025 - (void)setFireDate:(id)fp8;
00026 - (id)userInfo;
00027 - (struct __CFString *)copyDebugDescription;
00028 - (long)order;
00029 - (double)interval;
00030 - (double)fireTime;
00031 - (void)setFireTime:(double)fp8;
00032 - (CDAnonymousStruct3)context;
00033 - (double)_cffireTime;
00034
00035 @end
00036