Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SplashScreen.show() is not a function #6

Open
JakeRawr opened this issue Nov 7, 2016 · 18 comments
Open

SplashScreen.show() is not a function #6

JakeRawr opened this issue Nov 7, 2016 · 18 comments

Comments

@JakeRawr
Copy link

JakeRawr commented Nov 7, 2016

seems like you only exported hide method in SplashScreen.m but not show?

@crazycodeboy
Copy link
Owner

Yes, but you can use it in the following way:

Android

public class MainActivity extends ReactActivity {
   @Override
    protected void onCreate(Bundle savedInstanceState) {
        + SplashScreen.show(this);  // here
        super.onCreate(savedInstanceState);
    }
    // ...other code
}

iOS

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // ...other code

    + [SplashScreen show];  // here
    return YES;
}

@JakeRawr
Copy link
Author

JakeRawr commented Nov 8, 2016

I would like to on app resume, show SplashScreen again until contents are loaded.

Is that possible? I'm detecting app resume in React Native Javascript

@crazycodeboy
Copy link
Owner

Can you export the show method, and then send a pull request?

@leechance
Copy link

public class MainActivity extends ReactActivity {

/**
 * Returns the name of the main component registered from JavaScript.
 * This is used to schedule rendering of the component.
 */
@Override
protected String getMainComponentName() {
    SplashScreen.show(this,true);
}

}

@sairasamdanii
Copy link

I've downloaded and installed the splash screen plugin automatically. Now, I can see SplashScreen.xcodeproj in Libraries and libSplashScreen.a in "Link Binary With Libraries" section. But when I try #import "SplashScreen.h", it gives file not found error.

splashscreen - file not found

@leechance
Copy link

react-native link at the home directory of your project @sairasamdanii

@sairasamdanii
Copy link

I did same. And I can see "react-native-splash-screen" in node_modules of my project. Can you please notice that imports in my AppDelegate are like "#import <React/RCTRootView.h>" while in SplashScreen example, they are used as "#import "RCTRootView.h" ". Is there any version difference?

I've created my project through plain terminal commands and code written in it is the boiler code provided by react native itself.

@peterkuterna
Copy link

@sairasamdanii Are you using v40 of React Native? The iOS native headers have been moved. See also https://github.com/facebook/react-native/releases/tag/v0.40.0 . Quote from that page: "This means that all iOS native libraries need a major version bump for RN 0.40."

@itsdevcoffee
Copy link

Yeah it appears that the SplashScreen setup is broken after RN 0.40. I'm having the same issues.

@siemya
Copy link

siemya commented Feb 5, 2017

@crazycodeboy show() looks like a function under api but it isn't...

@crazycodeboy
Copy link
Owner

@siemya show() is a native method

@jdmcpeek
Copy link

jdmcpeek commented Feb 6, 2017

@crazycodeboy if show() is only a native method, then how can we show the Splash Screen at other times during the app experience?

I'm trying to show the splash screen during page transitions, for example. And it doesn't look like I can do this through react-native-splash-screen.

@siemya
Copy link

siemya commented Feb 6, 2017

@crazycodeboy i also want to show the splash screen when i reload the js bundle, thats why i need a show function. İs there any other way to do it?

@zhuyanhui
Copy link

hide is undefined

@jasan-s
Copy link

jasan-s commented Jun 12, 2017

@siemya @jdmcpeek @JakeRawr @crazycodeboy Any update on this? I'm using this with redux-persist and am having a issue #60 . any way to somehow treat the splash screen as a react component and render it at will? I thought about making a component using the same image as the splash screen, but not sure if aspect ratio and layout would match for devices of diff sizes.

@Nitingadhiya
Copy link

@sairasamdanii
Please Go to build setting >> Header search path
add this line :
$(SRCROOT)/../node_modules/react-native-splash-screen/ios
Thanks.

@iyanski
Copy link

iyanski commented Apr 2, 2019

#import <SplashScreen.h> works for me

@youngjuning
Copy link

we do need this feature

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests