다음을 통해 공유


NSTimer.CreateScheduledTimer 메서드

정의

오버로드

CreateScheduledTimer(Double, NSObject, Selector, NSObject, Boolean)

지정된 매개 변수를 사용하여 타이머를 만들고 기본 모드의 현재 NSRunLoop에서 실행될 예약합니다.

CreateScheduledTimer(Double, Boolean, Action<NSTimer>)
CreateScheduledTimer(Double, Action<NSTimer>)
CreateScheduledTimer(TimeSpan, Action<NSTimer>)

CreateScheduledTimer(Double, NSObject, Selector, NSObject, Boolean)

지정된 매개 변수를 사용하여 타이머를 만들고 기본 모드의 현재 NSRunLoop에서 실행될 예약합니다.

[Foundation.Export("scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:")]
public static Foundation.NSTimer CreateScheduledTimer (double seconds, Foundation.NSObject target, ObjCRuntime.Selector selector, Foundation.NSObject userInfo, bool repeats);
static member CreateScheduledTimer : double * Foundation.NSObject * ObjCRuntime.Selector * Foundation.NSObject * bool -> Foundation.NSTimer

매개 변수

seconds
Double

타이머 발생 사이의 시간(초)입니다.

target
NSObject

타이머가 실행될 때 호출될 개체입니다.

selector
Selector

에서 호출할 메서드입니다 target.

userInfo
NSObject

타이머에 대한 사용자 지정 사용자 정보입니다.

이 매개 변수는 null일 수 있습니다.

repeats
Boolean

이 타이머가 자동으로 반복되어야 하는지(true) 또는 처음 실행한 후 무효화되는지 여부(false).

반환

특성

적용 대상

CreateScheduledTimer(Double, Boolean, Action<NSTimer>)

[Foundation.Export("scheduledTimerWithTimeInterval:repeats:block:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.WatchOS, 3, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 12, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static Foundation.NSTimer CreateScheduledTimer (double interval, bool repeats, Action<Foundation.NSTimer> block);
static member CreateScheduledTimer : double * bool * Action<Foundation.NSTimer> -> Foundation.NSTimer

매개 변수

interval
Double
repeats
Boolean
block
Action<NSTimer>

반환

특성

적용 대상

CreateScheduledTimer(Double, Action<NSTimer>)

public static Foundation.NSTimer CreateScheduledTimer (double seconds, Action<Foundation.NSTimer> action);
static member CreateScheduledTimer : double * Action<Foundation.NSTimer> -> Foundation.NSTimer

매개 변수

seconds
Double
action
Action<NSTimer>

반환

적용 대상

CreateScheduledTimer(TimeSpan, Action<NSTimer>)

public static Foundation.NSTimer CreateScheduledTimer (TimeSpan when, Action<Foundation.NSTimer> action);
static member CreateScheduledTimer : TimeSpan * Action<Foundation.NSTimer> -> Foundation.NSTimer

매개 변수

when
TimeSpan
action
Action<NSTimer>

반환

적용 대상