Are there any other way of displaying an object/button/whatever,for example 3 seconds than with an NSTimer?
Could I use an animation to do this?
Are there any other way of displaying an object/button/whatever,for example 3 seconds than with
Share
You may use
-performSelector:withObject:afterDelay:, though it uses a timer internally.You cannot use
-setHidden:with this method because1is not an object, but you can useNSInvocation.