React Native app purely in Swift

后端 未结 6 685
生来不讨喜
生来不讨喜 2020-12-24 03:42

I created my first react native app using the following command.

react-native init PropertyFinder

This created a project for ios in

6条回答
  •  别那么骄傲
    2020-12-24 04:24

    If you're having trouble with the imports

    #import "RCTBridgeModule.h"
    #import "RCTBridge.h"
    #import "RCTEventDispatcher.h"
    #import "RCTRootView.h"
    #import "RCTUtils.h"
    #import "RCTConvert.h"
    

    try

    #import 
    #import 
    #import 
    #import 
    #import 
    #import 
    

提交回复
热议问题