All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bugvm.apple.uikit.UIApplication Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2013-2015 RoboVM AB
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.bugvm.apple.uikit;

/**/
import java.io.*;
import java.nio.*;
import java.util.*;
import com.bugvm.objc.*;
import com.bugvm.objc.annotation.*;
import com.bugvm.objc.block.*;
import com.bugvm.rt.*;
import com.bugvm.rt.annotation.*;
import com.bugvm.rt.bro.*;
import com.bugvm.rt.bro.annotation.*;
import com.bugvm.rt.bro.ptr.*;
import com.bugvm.apple.foundation.*;
import com.bugvm.apple.coreanimation.*;
import com.bugvm.apple.coregraphics.*;
import com.bugvm.apple.coredata.*;
import com.bugvm.apple.coreimage.*;
import com.bugvm.apple.coretext.*;
import com.bugvm.apple.corelocation.*;
/**/

/**/
/**
 * @since Available in iOS 2.0 and later.
 */
/**/
/**/@Library("UIKit") @NativeClass/**/
/**/public/**/ class /**/UIApplication/**/ 
    extends /**/UIResponder/**/ 
    /**//**/ {

    public static class Notifications {
        /**
         * @since Available in iOS 4.0 and later.
         */
        public static NSObject observeDidEnterBackground(final Runnable block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(DidEnterBackgroundNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    block.run();
                }
            });
        }
        /**
         * @since Available in iOS 4.0 and later.
         */
        public static NSObject observeWillEnterForeground(final Runnable block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(WillEnterForegroundNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    block.run();
                }
            });
        }
        public static NSObject observeDidFinishLaunching(final VoidBlock1 block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(DidFinishLaunchingNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    if (a.getUserInfo() != null) {
                        block.invoke(new UIApplicationLaunchOptions(a.getUserInfo()));
                    } else {
                        block.invoke(null);
                    }
                }
            });
        }
        public static NSObject observeDidBecomeActive(final Runnable block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(DidBecomeActiveNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    block.run();
                }
            });
        }
        public static NSObject observeWillResignActive(final Runnable block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(WillResignActiveNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    block.run();
                }
            });
        }
        public static NSObject observeDidReceiveMemoryWarning(final Runnable block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(DidReceiveMemoryWarningNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    block.run();
                }
            });
        }
        public static NSObject observeWillTerminate(final Runnable block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(WillTerminateNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    block.run();
                }
            });
        }
        public static NSObject observeSignificantTimeChange(final Runnable block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(SignificantTimeChangeNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    block.run();
                }
            });
        }
        public static NSObject observeWillChangeStatusBarOrientation(final VoidBlock1 block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(WillChangeStatusBarOrientationNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    NSNumber val = (NSNumber)a.getUserInfo().get(StatusBarOrientationUserInfoKey());
                    block.invoke(UIInterfaceOrientation.valueOf(val.intValue()));
                }
            });
        }
        public static NSObject observeDidChangeStatusBarOrientation(final VoidBlock1 block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(DidChangeStatusBarOrientationNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    NSNumber val = (NSNumber)a.getUserInfo().get(StatusBarOrientationUserInfoKey());
                    block.invoke(UIInterfaceOrientation.valueOf(val.intValue()));
                }
            });
        }
        public static NSObject observeWillChangeStatusBarFrame(final VoidBlock1 block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(WillChangeStatusBarFrameNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    NSValue val = (NSValue)a.getUserInfo().get(StatusBarFrameUserInfoKey());
                    block.invoke(NSValueExtensions.getRectValue(val));
                }
            });
        }
        public static NSObject observeDidChangeStatusBarFrame(final VoidBlock1 block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(DidChangeStatusBarFrameNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    NSValue val = (NSValue)a.getUserInfo().get(StatusBarFrameUserInfoKey());
                    block.invoke(NSValueExtensions.getRectValue(val));
                }
            });
        }
        /**
         * @since Available in iOS 7.0 and later.
         */
        public static NSObject observeBackgroundRefreshStatusDidChange(final Runnable block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(BackgroundRefreshStatusDidChangeNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    block.run();
                }
            });
        }
        /**
         * @since Available in iOS 4.0 and later.
         */
        public static NSObject observeProtectedDataWillBecomeUnavailable(final Runnable block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(ProtectedDataWillBecomeUnavailableNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    block.run();
                }
            });
        }
        /**
         * @since Available in iOS 4.0 and later.
         */
        public static NSObject observeProtectedDataDidBecomeAvailable(final Runnable block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(ProtectedDataDidBecomeAvailableNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    block.run();
                }
            });
        }
        /**
         * @since Available in iOS 7.0 and later.
         */
        public static NSObject observeContentSizeCategoryDidChange(final VoidBlock1 block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(ContentSizeCategoryDidChangeNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    NSString val = (NSString)a.getUserInfo().get(ContentSizeCategoryNewValueKey());
                    block.invoke(UIContentSizeCategory.valueOf(val));
                }
            });
        }
        /**
         * @since Available in iOS 7.0 and later.
         */
        public static NSObject observeUserDidTakeScreenshot(final Runnable block) {
            return NSNotificationCenter.getDefaultCenter().addObserver(UserDidTakeScreenshotNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() {
                @Override
                public void invoke(NSNotification a) {
                    block.run();
                }
            });
        }
    }
    
    /* Used to preserve the key window from being released. */
    private static UIWindow KEY_WINDOW = null;
    
    /**/public static class UIApplicationPtr extends Ptr {}/**/
    /**/static { ObjCRuntime.bind(UIApplication.class); }/**/
    /**//**/
    /**/
    public UIApplication() {}
    protected UIApplication(SkipInit skipInit) { super(skipInit); }
    /**/
    /**/
    @Property(selector = "delegate")
    public native UIApplicationDelegate getDelegate();
    @Property(selector = "setDelegate:", strongRef = true)
    public native void setDelegate(UIApplicationDelegate v);
    @Property(selector = "isIdleTimerDisabled")
    public native boolean isIdleTimerDisabled();
    @Property(selector = "setIdleTimerDisabled:")
    public native void setIdleTimerDisabled(boolean v);
    @Property(selector = "keyWindow")
    public native UIWindow getKeyWindow();
    @Property(selector = "windows")
    public native NSArray getWindows();
    @Property(selector = "isNetworkActivityIndicatorVisible")
    public native boolean isNetworkActivityIndicatorVisible();
    @Property(selector = "setNetworkActivityIndicatorVisible:")
    public native void setNetworkActivityIndicatorVisible(boolean v);
    @Property(selector = "statusBarStyle")
    public native UIStatusBarStyle getStatusBarStyle();
    @Property(selector = "isStatusBarHidden")
    public native boolean isStatusBarHidden();
    @Property(selector = "statusBarOrientation")
    public native UIInterfaceOrientation getStatusBarOrientation();
    @Property(selector = "statusBarOrientationAnimationDuration")
    public native double getStatusBarOrientationAnimationDuration();
    @Property(selector = "statusBarFrame")
    public native @ByVal CGRect getStatusBarFrame();
    @Property(selector = "applicationIconBadgeNumber")
    public native @MachineSizedSInt long getApplicationIconBadgeNumber();
    @Property(selector = "setApplicationIconBadgeNumber:")
    public native void setApplicationIconBadgeNumber(@MachineSizedSInt long v);
    /**
     * @since Available in iOS 3.0 and later.
     */
    @Property(selector = "applicationSupportsShakeToEdit")
    public native boolean supportsShakeToEdit();
    /**
     * @since Available in iOS 3.0 and later.
     */
    @Property(selector = "setApplicationSupportsShakeToEdit:")
    public native void setSupportsShakeToEdit(boolean v);
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Property(selector = "applicationState")
    public native UIApplicationState getApplicationState();
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Property(selector = "backgroundTimeRemaining")
    public native double getBackgroundTimeRemaining();
    /**
     * @since Available in iOS 7.0 and later.
     */
    @Property(selector = "backgroundRefreshStatus")
    public native UIBackgroundRefreshStatus getBackgroundRefreshStatus();
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Property(selector = "isProtectedDataAvailable")
    public native boolean isProtectedDataAvailable();
    /**
     * @since Available in iOS 5.0 and later.
     */
    @Property(selector = "userInterfaceLayoutDirection")
    public native UIUserInterfaceLayoutDirection getUserInterfaceLayoutDirection();
    /**
     * @since Available in iOS 7.0 and later.
     */
    @Property(selector = "preferredContentSizeCategory")
    public native String getPreferredContentSizeCategory();
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Property(selector = "scheduledLocalNotifications")
    public native NSArray getScheduledLocalNotifications();
    /**
     * @since Available in iOS 4.0 and later.
     */
    @Property(selector = "setScheduledLocalNotifications:")
    public native void setScheduledLocalNotifications(NSArray v);
    /**
     * @since Available in iOS 2.0 and later.
     * @deprecated Deprecated in iOS 9.0.
     */
    @Deprecated
    @Property(selector = "setStatusBarOrientation:")
    public native void setStatusBarOrientation(UIInterfaceOrientation v);
    /**
     * @since Available in iOS 2.0 and later.
     * @deprecated Deprecated in iOS 9.0.
     */
    @Deprecated
    @Property(selector = "setStatusBarStyle:")
    public native void setStatusBarStyle(UIStatusBarStyle v);
    /**
     * @since Available in iOS 2.0 and later.
     * @deprecated Deprecated in iOS 9.0.
     */
    @Deprecated
    @Property(selector = "setStatusBarHidden:")
    public native void setStatusBarHidden(boolean v);
    /**/
    /**//**/
    
    public static 

void main(String[] args, Class

principalClass, Class delegateClass) { int argc = args.length; BytePtr.BytePtrPtr argv = null; if (argc > 0) { argv = Struct.allocate(BytePtr.BytePtrPtr.class, argc); for (int i = 0; i < argc; i++) { // TODO: Encoding? BytePtr arg = BytePtr.toBytePtrAsciiZ(args[i]); argv.next(i).set(arg); } } String principalClassName = null; if (principalClass != null) { principalClassName = ObjCClass.getByType(principalClass).getName(); } String delegateClassName = null; if (delegateClass != null) { delegateClassName = ObjCClass.getByType(delegateClass).getName(); } if (System.getenv("ROBOVM_LAUNCH_MODE") == null) { if (!(System.err instanceof FoundationLogPrintStream)) { System.setErr(new FoundationLogPrintStream()); } if (!(System.out instanceof FoundationLogPrintStream)) { System.setOut(new FoundationLogPrintStream()); } } // Observe the key UIWindow and keep a strong reference to it. NSNotificationCenter.getDefaultCenter().addObserver(UIWindow.DidBecomeKeyNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() { @Override public void invoke(NSNotification a) { KEY_WINDOW = (UIWindow) a.getObject(); } }); NSNotificationCenter.getDefaultCenter().addObserver(UIWindow.DidResignKeyNotification(), null, NSOperationQueue.getMainQueue(), new VoidBlock1() { @Override public void invoke(NSNotification a) { if (a.getObject() == KEY_WINDOW) KEY_WINDOW = null; } }); try { preloadClasses(); } catch (UnsupportedEncodingException e) { throw new Error(e); } main(argc, argv, principalClassName, delegateClassName); } /** * Preloads classes added during compilation, if any. */ private static void preloadClasses() throws UnsupportedEncodingException { byte[] data = VM.getRuntimeData(UIApplication.class.getName() + ".preloadClasses"); if (data != null) { String[] customClasses = new String(data, "UTF8").split(","); for (String customClass : customClasses) { try { // Register class. @SuppressWarnings("unchecked") Class cls = (Class) Class.forName(customClass); ObjCClass.registerCustomClass(cls); } catch (Throwable t) { Foundation.log("Failed to preload class " + customClass + ": " + t.getMessage()); t.printStackTrace(); } } } } /**/ /** * @since Available in iOS 4.0 and later. */ @GlobalValue(symbol="UIBackgroundTaskInvalid", optional=true) public static native @MachineSizedUInt long getInvalidBackgroundTask(); /** * @since Available in iOS 4.0 and later. */ @GlobalValue(symbol="UIMinimumKeepAliveTimeout", optional=true) public static native double getMinimumKeepAliveTimeout(); /** * @since Available in iOS 7.0 and later. */ @GlobalValue(symbol="UIApplicationBackgroundFetchIntervalMinimum", optional=true) public static native double getBackgroundFetchIntervalMinimum(); /** * @since Available in iOS 7.0 and later. */ @GlobalValue(symbol="UIApplicationBackgroundFetchIntervalNever", optional=true) public static native double getBackgroundFetchIntervalNever(); /** * @since Available in iOS 4.0 and later. */ @GlobalValue(symbol="UIApplicationDidEnterBackgroundNotification", optional=true) public static native NSString DidEnterBackgroundNotification(); /** * @since Available in iOS 4.0 and later. */ @GlobalValue(symbol="UIApplicationWillEnterForegroundNotification", optional=true) public static native NSString WillEnterForegroundNotification(); @GlobalValue(symbol="UIApplicationDidFinishLaunchingNotification", optional=true) public static native NSString DidFinishLaunchingNotification(); @GlobalValue(symbol="UIApplicationDidBecomeActiveNotification", optional=true) public static native NSString DidBecomeActiveNotification(); @GlobalValue(symbol="UIApplicationWillResignActiveNotification", optional=true) public static native NSString WillResignActiveNotification(); @GlobalValue(symbol="UIApplicationDidReceiveMemoryWarningNotification", optional=true) public static native NSString DidReceiveMemoryWarningNotification(); @GlobalValue(symbol="UIApplicationWillTerminateNotification", optional=true) public static native NSString WillTerminateNotification(); @GlobalValue(symbol="UIApplicationSignificantTimeChangeNotification", optional=true) public static native NSString SignificantTimeChangeNotification(); @GlobalValue(symbol="UIApplicationWillChangeStatusBarOrientationNotification", optional=true) public static native NSString WillChangeStatusBarOrientationNotification(); @GlobalValue(symbol="UIApplicationDidChangeStatusBarOrientationNotification", optional=true) public static native NSString DidChangeStatusBarOrientationNotification(); @GlobalValue(symbol="UIApplicationStatusBarOrientationUserInfoKey", optional=true) protected static native NSString StatusBarOrientationUserInfoKey(); @GlobalValue(symbol="UIApplicationWillChangeStatusBarFrameNotification", optional=true) public static native NSString WillChangeStatusBarFrameNotification(); @GlobalValue(symbol="UIApplicationDidChangeStatusBarFrameNotification", optional=true) public static native NSString DidChangeStatusBarFrameNotification(); @GlobalValue(symbol="UIApplicationStatusBarFrameUserInfoKey", optional=true) protected static native NSString StatusBarFrameUserInfoKey(); /** * @since Available in iOS 7.0 and later. */ @GlobalValue(symbol="UIApplicationBackgroundRefreshStatusDidChangeNotification", optional=true) public static native NSString BackgroundRefreshStatusDidChangeNotification(); /** * @since Available in iOS 4.0 and later. */ @GlobalValue(symbol="UIApplicationProtectedDataWillBecomeUnavailable", optional=true) public static native NSString ProtectedDataWillBecomeUnavailableNotification(); /** * @since Available in iOS 4.0 and later. */ @GlobalValue(symbol="UIApplicationProtectedDataDidBecomeAvailable", optional=true) public static native NSString ProtectedDataDidBecomeAvailableNotification(); /** * @since Available in iOS 8.0 and later. */ @GlobalValue(symbol="UIApplicationOpenSettingsURLString", optional=true) public static native String getOpenSettingsURLString(); /** * @since Available in iOS 7.0 and later. */ @GlobalValue(symbol="UIContentSizeCategoryDidChangeNotification", optional=true) public static native NSString ContentSizeCategoryDidChangeNotification(); /** * @since Available in iOS 7.0 and later. */ @GlobalValue(symbol="UIContentSizeCategoryNewValueKey", optional=true) protected static native NSString ContentSizeCategoryNewValueKey(); /** * @since Available in iOS 7.0 and later. */ @GlobalValue(symbol="UIApplicationUserDidTakeScreenshotNotification", optional=true) public static native NSString UserDidTakeScreenshotNotification(); @Bridge(symbol="UIApplicationMain", optional=true) protected static native int main(int argc, BytePtr.BytePtrPtr argv, String principalClassName, String delegateClassName); @Method(selector = "beginIgnoringInteractionEvents") public native void beginIgnoringInteractionEvents(); @Method(selector = "endIgnoringInteractionEvents") public native void endIgnoringInteractionEvents(); @Method(selector = "isIgnoringInteractionEvents") public native boolean isIgnoringInteractionEvents(); @Method(selector = "openURL:") public native boolean openURL(NSURL url); /** * @since Available in iOS 3.0 and later. */ @Method(selector = "canOpenURL:") public native boolean canOpenURL(NSURL url); @Method(selector = "sendEvent:") public native void sendEvent(UIEvent event); @Method(selector = "sendAction:to:from:forEvent:") public native boolean sendAction(Selector action, NSObject target, NSObject sender, UIEvent event); /** * @since Available in iOS 6.0 and later. */ @Method(selector = "supportedInterfaceOrientationsForWindow:") public native UIInterfaceOrientationMask getSupportedInterfaceOrientations(UIWindow window); /** * @since Available in iOS 4.0 and later. */ @Method(selector = "beginBackgroundTaskWithExpirationHandler:") public native @MachineSizedUInt long beginBackgroundTask(@Block Runnable handler); /** * @since Available in iOS 7.0 and later. */ @Method(selector = "beginBackgroundTaskWithName:expirationHandler:") public native @MachineSizedUInt long beginBackgroundTask(String taskName, @Block Runnable handler); /** * @since Available in iOS 4.0 and later. */ @Method(selector = "endBackgroundTask:") public native void endBackgroundTask(@MachineSizedUInt long identifier); /** * @since Available in iOS 7.0 and later. */ @Method(selector = "setMinimumBackgroundFetchInterval:") public native void setMinimumBackgroundFetchInterval(double minimumBackgroundFetchInterval); @Method(selector = "sharedApplication") public static native UIApplication getSharedApplication(); /** * @since Available in iOS 8.0 and later. */ @Method(selector = "registerForRemoteNotifications") public native void registerForRemoteNotifications(); /** * @since Available in iOS 3.0 and later. */ @Method(selector = "unregisterForRemoteNotifications") public native void unregisterForRemoteNotifications(); /** * @since Available in iOS 8.0 and later. */ @Method(selector = "isRegisteredForRemoteNotifications") public native boolean isRegisteredForRemoteNotifications(); /** * @since Available in iOS 3.0 and later. * @deprecated Deprecated in iOS 8.0. */ @Deprecated @Method(selector = "registerForRemoteNotificationTypes:") public native void registerForRemoteNotificationTypes(UIRemoteNotificationType types); /** * @since Available in iOS 3.0 and later. * @deprecated Deprecated in iOS 8.0. */ @Deprecated @Method(selector = "enabledRemoteNotificationTypes") public native UIRemoteNotificationType getEnabledRemoteNotificationTypes(); /** * @since Available in iOS 4.0 and later. */ @Method(selector = "presentLocalNotificationNow:") public native void presentLocalNotificationNow(UILocalNotification notification); /** * @since Available in iOS 4.0 and later. */ @Method(selector = "scheduleLocalNotification:") public native void scheduleLocalNotification(UILocalNotification notification); /** * @since Available in iOS 4.0 and later. */ @Method(selector = "cancelLocalNotification:") public native void cancelLocalNotification(UILocalNotification notification); /** * @since Available in iOS 4.0 and later. */ @Method(selector = "cancelAllLocalNotifications") public native void cancelAllLocalNotifications(); /** * @since Available in iOS 8.0 and later. */ @Method(selector = "registerUserNotificationSettings:") public native void registerUserNotificationSettings(UIUserNotificationSettings notificationSettings); /** * @since Available in iOS 8.0 and later. */ @Method(selector = "currentUserNotificationSettings") public native UIUserNotificationSettings getCurrentUserNotificationSettings(); /** * @since Available in iOS 4.0 and later. */ @Method(selector = "beginReceivingRemoteControlEvents") public native void beginReceivingRemoteControlEvents(); /** * @since Available in iOS 4.0 and later. */ @Method(selector = "endReceivingRemoteControlEvents") public native void endReceivingRemoteControlEvents(); /** * @since Available in iOS 9.0 and later. * @deprecated Deprecated in iOS 9.0. */ @Deprecated @Method(selector = "setNewsstandIconImage:") public native void setNewsstandIconImage(UIImage image); /** * @since Available in iOS 6.0 and later. */ @Method(selector = "extendStateRestoration") public native void extendStateRestoration(); /** * @since Available in iOS 6.0 and later. */ @Method(selector = "completeStateRestoration") public native void completeStateRestoration(); /** * @since Available in iOS 7.0 and later. */ @Method(selector = "ignoreSnapshotOnNextApplicationLaunch") public native void ignoreSnapshotOnNextApplicationLaunch(); /** * @since Available in iOS 7.0 and later. */ @Method(selector = "registerObjectForStateRestoration:restorationIdentifier:") public static native void registerObjectForStateRestoration(UIStateRestoring object, String restorationIdentifier); /** * @since Available in iOS 2.0 and later. * @deprecated Deprecated in iOS 9.0. */ @Deprecated @Method(selector = "setStatusBarOrientation:animated:") public native void setStatusBarOrientation(UIInterfaceOrientation interfaceOrientation, boolean animated); /** * @since Available in iOS 2.0 and later. * @deprecated Deprecated in iOS 9.0. */ @Deprecated @Method(selector = "setStatusBarStyle:animated:") public native void setStatusBarStyle(UIStatusBarStyle statusBarStyle, boolean animated); /** * @since Available in iOS 3.2 and later. * @deprecated Deprecated in iOS 9.0. */ @Deprecated @Method(selector = "setStatusBarHidden:withAnimation:") public native void setStatusBarHidden(boolean hidden, UIStatusBarAnimation animation); /** * @since Available in iOS 4.0 and later. * @deprecated Deprecated in iOS 9.0. */ @Deprecated @Method(selector = "setKeepAliveTimeout:handler:") public native boolean setKeepAliveTimeout(double timeout, @Block Runnable keepAliveHandler); /** * @since Available in iOS 4.0 and later. * @deprecated Deprecated in iOS 9.0. */ @Deprecated @Method(selector = "clearKeepAliveTimeout") public native void clearKeepAliveTimeout(); /**/ }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy