Unity导出的Xcode工程嵌入原生iOS工程

Unity to Xcode

一、准备工作

1.首先试运行Unity导出的工程是否可以运行(这里导出的工程是针对真机的,所以使用真机调试)
2.准备一个Xcode创建的原生工程,这里使用的是一个Single View App。在ViewController 中创建一个按钮,以供点击进入Unity场景。
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.

    //这里创建一个button以供跳转进入Unity场景
    self.jumpButton = [[UIButton alloc] initWithFrame:CGRectMake(40, 200, ([UIScreen mainScreen].bounds.size.width)-80, 70)];
    self.jumpButton.backgroundColor = [UIColor cyanColor];
    [self.jumpButton setTitle:@"开启" forState:UIControlStateNormal];
    [self.jumpButton addTarget:self action:@selector(jumpToUnity) forControlEvents:UIControlEventTouchDown];
    [self.view addSubview:self.jumpButton];
}
3.嵌入文件准备。在Unity导出的工程根目录下,将图1-1中选中的文件copy进原生工程根目录下,如图1-2。
图1-1

图1-2

二、文件导入

1.Data文件夹以“Create folder references”方式导入。
2-1
2.Classes、Libraries、MapFileParser.sh以“Create groups”方式导入。
2-2

导入后工程目录如下:


2-3
3.删除Libraries->libil2cpp,这个文件的引用。
2-4

#因为这里是Unity2018导出的工程,所以不需要像2017版本之前那样去Classes->Native下删除“.h”文件的引用。

三、添加Framework,这里参考Unity导出工程,注意每个Framework对应的Status,这里有俩个库的Status是Optional。

3-1

#关于libiconv.2.dylib的添加这里需要说一下,直接搜索,只有libiconv.2.tbd,所以选择“Add Other…”方式添加。


3-2

然后键盘快捷键CMD+Shift+G (go to folder) 输入 “/usr/lib”


3-3

继续搜索“libiconv”
3-4

#每个Unity导出的工程依赖的Framework不一样,这里依照需要嵌入的工程为准。

四、buildSettings

1.添加一个Run Script
4-1

点击“+”之后,选择“New Run Script Phase”。


4-2

#这里要注意路径,依照脚本文件所在路径为准。我这里是将文件放在工程的根目录下的。

2.Enable BitCode

因为这里Unity导出的工程不支持Bitcode,所以……


4-3
3.Search Paths
4-4

此三项,从Unity导出工程复制过来,包括顺序!
Framework Search Paths


4-5

Header Search Paths


4-6

Library Search Paths
4-7

#注意的是,不要忽略Framework Search Paths,虽然看起来是空的,然后不要重复。

3.Other linker Flags

#特别注意:如iOS原生项目中配置了-all_load 应删除,否则会与Unity3D 项目中的依赖库冲突


4-8
4.Supported Platforms 因为Unity导出工程不支持模拟器
4-9

对比以后删除掉模拟器支持


image.png
5.Other C Flags、Other C++ Flags
4-10

4-11

4-12
6.C Language Dialect 改为 C99
4-13

还有下图中四项,依照导出的工程修改


4-14
7.添加User-Defined

点击“+”后,选择 “add User Defined Setting”


4-15

参考Unity 导出工程,这里我添加的有:

GCC_THUMB_SUPPORT = NO
PROVISIONING_PROFILE
UNITY_RUNTIME_VERSION = 2018.3.9f1
UNITY_SCRIPTING_BACKEND = il2cpp

如下图,左边是iOS原生工程,右边是Unity导出工程


4-16

#鼠标选中需要复制项,键盘按回车,就可以copy了。如图4-17


4-17

注意:build Setting,修改主要是对照Unity导出的工程,先看Unity导出的工程的build Setting里那些项目是加粗的,这些就需要你注意对照原生工程修改了。

五、Pch文件合并与代码修改

合并Pch文件,将Classes->Prefix.pch内容拷贝入原生项目的Pch文件内,然后删除掉Classes->Prefix.pch。如果原生工程没有Pch文件,则可以直接使用这个Pch文件,记得去build Setting 里添加pch文件路径。


5-1

main文件修改,将Classes->main.mm文件内代码拷贝入原生工程目录下的main.m文件下,并且修改后缀为.mm,然后删除Classes->main.mm

//
//  main.m
//  TestDemo
//
//  Created by Brian on 2019/3/26.
//  Copyright © 2019 Brian. All rights reserved.
//

#include "RegisterMonoModules.h"
#include "RegisterFeatures.h"
#include <csignal>

#import "AppDelegate.h"

// Hack to work around iOS SDK 4.3 linker problem
// we need at least one __TEXT, __const section entry in main application .o files
// to get this section emitted at right time and so avoid LC_ENCRYPTION_INFO size miscalculation
static const int constsection = 0;

void UnityInitTrampoline();

// WARNING: this MUST be c decl (NSString ctor will be called after +load, so we cant really change its value)
const char* AppControllerClassName = "UnityAppController";

#if UNITY_USES_DYNAMIC_PLAYER_LIB
extern "C" void SetAllUnityFunctionsForDynamicPlayerLib();
#endif

int main(int argc, char* argv[])
{
#if UNITY_USES_DYNAMIC_PLAYER_LIB
    SetAllUnityFunctionsForDynamicPlayerLib();
#endif
    
    UnityInitStartupTime();
    @autoreleasepool
    {
        UnityInitTrampoline();
        UnityInitRuntime(argc, argv);
        
        RegisterMonoModules();
        NSLog(@"-> registered mono modules %p\n", &constsection);
        RegisterFeatures();
        
        // iOS terminates open sockets when an application enters background mode.
        // The next write to any of such socket causes SIGPIPE signal being raised,
        // even if the request has been done from scripting side. This disables the
        // signal and allows Mono to throw a proper C# exception.
        std::signal(SIGPIPE, SIG_IGN);

        UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));

//        UIApplicationMain(argc, argv, nil, [NSString stringWithUTF8String: AppControllerClassName]);
    }
    
    return 0;
}

#if TARGET_IPHONE_SIMULATOR && TARGET_TVOS_SIMULATOR

#include <pthread.h>

extern "C" int pthread_cond_init$UNIX2003(pthread_cond_t *cond, const pthread_condattr_t *attr)
{ return pthread_cond_init(cond, attr); }
extern "C" int pthread_cond_destroy$UNIX2003(pthread_cond_t *cond)
{ return pthread_cond_destroy(cond); }
extern "C" int pthread_cond_wait$UNIX2003(pthread_cond_t *cond, pthread_mutex_t *mutex)
{ return pthread_cond_wait(cond, mutex); }
extern "C" int pthread_cond_timedwait$UNIX2003(pthread_cond_t *cond, pthread_mutex_t *mutex,
                                               const struct timespec *abstime)
{ return pthread_cond_timedwait(cond, mutex, abstime); }

#endif // TARGET_IPHONE_SIMULATOR && TARGET_TVOS_SIMULATOR


//原有的mian函数
//int main(int argc, char * argv[]) {
//    @autoreleasepool {
//        return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
//    }
//}

修改UnityAppController.h 中的

//修改前
inline UnityAppController* GetAppController()
{
    return _UnityAppController;
}

//修改后
#import "AppDelegate.h"
inline UnityAppController*  GetAppController()
{
    AppDelegate *delegate = (AppDelegate *)[UIApplication sharedApplication].delegate;
    return delegate.unityController;
}

原生 AppDelegate 中的修改
AppDelegate.h文件

//
//  AppDelegate.h
//  TestDemo
//
//  Created by Brian on 2019/3/26.
//  Copyright © 2019 Brian. All rights reserved.
//

#import <UIKit/UIKit.h>

@class UnityAppController;

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

@property (strong, nonatomic) UIWindow *unityWindow;

@property (strong, nonatomic) UnityAppController *unityController;

-(void)StartMyUnity; //开启unity
- (void)hideUnityWindow; //退出Unity 其实是暂停

@end

AppDelegate.m文件

//
//  AppDelegate.m
//  TestDemo
//
//  Created by Brian on 2019/3/26.
//  Copyright © 2019 Brian. All rights reserved.
//

#import "AppDelegate.h"
#import "ViewController.h"
#import "UnityAppController.h"

@interface AppDelegate ()

@end

@implementation AppDelegate

-(UIWindow *)unityWindow{
    return  UnityGetMainWindow();
}

-(void)showUnityWindow{
    //进入unity界面
    UnityPause(false);
    [self.unityWindow makeKeyAndVisible];
}

-(void)hideUnityWindow{
    
    //退出Unity界面
    UnityPause(true);
    [self.window makeKeyAndVisible];
}

-(void)StartMyUnity {
    [_unityController applicationDidBecomeActive:[UIApplication sharedApplication]];
    [self showUnityWindow];
}


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    
    self.unityController = [[UnityAppController alloc] init];
    [_unityController application:application didFinishLaunchingWithOptions:launchOptions];
    
    
    self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
    self.window.backgroundColor = [UIColor whiteColor];
    
    ViewController *vc = [[ViewController alloc] init];
    UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
    self.window.rootViewController = nav;

    [self.window makeKeyWindow];
    
    return YES;
}


- (void)applicationWillResignActive:(UIApplication *)application {
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
    [_unityController applicationWillResignActive:application];
}


- (void)applicationDidEnterBackground:(UIApplication *)application {
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
    [_unityController applicationDidEnterBackground:application];
}


- (void)applicationWillEnterForeground:(UIApplication *)application {
    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
    [_unityController applicationWillEnterForeground:application];
}

static BOOL isFirst = NO;

- (void)applicationDidBecomeActive:(UIApplication *)application {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
    [_unityController applicationDidBecomeActive:application];
    if (!isFirst) {
        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
            [self hideUnityWindow];
            isFirst = YES;
        });
    }
}


- (void)applicationWillTerminate:(UIApplication *)application {
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
    [UIApplication sharedApplication].idleTimerDisabled = NO;

    [_unityController applicationWillTerminate:application];
}


@end

修改info.plist

因为Unity场景中使用相机进行扫描,所以需要添加相机权限访问提示。

    <key>NSCameraUsageDescription</key>
    <string>需要访问您的相机,以便扫描文字</string>

以及Unity导出工程中info.plist中的这些(可以忽略)

    <key>UnityCloudProjectID</key>
    <string></string>
    <key>UnityCrashSubmissionURL</key>
    <string>https://a:b@perf-events.cloud.unity3d.com/symbolicate</string>
    <key>Unity_LoadingActivityIndicatorStyle</key>
    <integer>-1</integer>

调用

在需要启动Unity3D 项目的地方调用

[(AppDelegate *)[UIApplication sharedApplication].delegate StartMyUnity];

退出Unity3D(其实是暂停)

[(AppDelegate*)[UIApplication sharedApplication].delegate hideUnityWindow];//隐藏

错误调试

这时候可以编译了,DeviceSettings.mm文件内有一个错误,

image.png

在报错的函数尾部添加 "return deviceUnknown;" 即可。

……
#elif PLATFORM_TVOS
    if (!strncmp(model, "AppleTV5,", 9))
        return deviceAppleTV1Gen;
    else if (!strncmp(model, "AppleTV6,", 9))
        return deviceAppleTV2Gen;
    else
        return deviceUnknown;
#endif
    return deviceUnknown;
}

如果有
Undefined symbols for architecture arm64:
"**********", referenced from:DynamicLibEngineAPI.o

则去 Build Phases 搜索 DynamicLibEngineAPI 然后删除引用


image.png

下手太快,这图是已经删除后的。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 159,117评论 4 362
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 67,328评论 1 293
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 108,839评论 0 243
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 44,007评论 0 206
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 52,384评论 3 287
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,629评论 1 219
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,880评论 2 313
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,593评论 0 198
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,313评论 1 243
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,575评论 2 246
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 32,066评论 1 260
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,392评论 2 253
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 33,052评论 3 236
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,082评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,844评论 0 195
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,662评论 2 274
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,575评论 2 270

推荐阅读更多精彩内容