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

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

注意:ios使用的Unity导出的工程,必须是在Mac系统下导出的Unity工程才可以,用windows系统导出的工程在ios中使用会出现问题。

一、准备工作

1.首先试运行Unity导出的工程是否可以运行(这里导出的工程是针对真机的,所以使用真机调试)

2.Unity导出工程时设置bundle id要与项目一致

3.准备一个Xcode创建的原生工程,这里使用的是一个Single View App。在ViewController 中创建一个按钮,以供点击进入Unity场景。

4.嵌入文件准备。在Unity导出的工程根目录下,将图中选中的文件copy进原生工程根目录下,

将Classes,Libraries,MapFileParser.sh拖入到项目(选中Copy items if needed, 选中Create groups)

将Data拖入到项目(选中Copy items if needed, 选中Create folder references)

image

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

删除Classes->Native下“.h”文件的引用。

image

二、添加Framework引用库文件

1.添加Framework引用库文件,这里参考Unity导出工程,注意每个Framework对应的Status,这里有俩个库的Status是Optional。

image

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

image

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

image

继续搜索“libiconv”

image

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

三、Build Settings

1.添加一个Run Script

#这里要注意路径,依照脚本文件所在路径为准。

image

2.Enable BitCode

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

image

3.添加Header Search Paths和Library Search Paths、Framework Search Paths

对应Unity导出工程添加

image

4.Other linker Flags 添加-weak_framework CoreMotion -weak-lSystem

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

image

5.Other C Flags、Other C++ Flags

在other C Flags 中添加 -DINIT_SCRIPTING_BACKEND=1 同是在 other C++ Flags中出现

根据Unity导出工程来修改

image

6.C Language Dialect 改为 C99

image

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

image

跟着下面的图片,对应Unity导出的工程做设置更改

image

7.添加User-Defined

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

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

GCC_THUMB_SUPPORT NO

GCC_USE_INDIRECT_FUNCTION_CALLS NO

UNITY_RUNTIME_VERSION 5.4.0f3

UNITY_SCRIPTING_BACKEND il2cpp

image

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

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

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

image
image

添加 UnityAppController.h 的引用。

image

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


//

//  main.m

//  lycUnitydemo

//

//  Created by pts on 2019/10/15.

//  Copyright © 2019 pt. All rights reserved.

//

#import 

#import "AppDelegate.h"

#include "RegisterMonoModules.h"

#include "RegisterFeatures.h"

#include<csignal>

// 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

staticconstintconstsection =0;

voidUnityInitTrampoline();

// WARNING: this MUST be c decl (NSString ctor will be called after +load, so we cant really change its value)

constchar* AppControllerClassName ="UnityAppController";

#if UNITY_USES_DYNAMIC_PLAYER_LIB

extern"C"voidSetAllUnityFunctionsForDynamicPlayerLib();

#endif

//const char* AppControllerClassName = "AppDelegate";

intmain(intargc,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, [NSString stringWithUTF8String: AppControllerClassName]);

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

    }

    return 0;

}

#if TARGET_IPHONE_SIMULATOR && TARGET_TVOS_SIMULATOR

#include 

extern"C"intpthread_cond_init$UNIX2003(pthread_cond_t *cond,constpthread_condattr_t *attr)

{returnpthread_cond_init(cond, attr); }

extern"C"intpthread_cond_destroy$UNIX2003(pthread_cond_t *cond)

{returnpthread_cond_destroy(cond); }

extern"C"intpthread_cond_wait$UNIX2003(pthread_cond_t *cond, pthread_mutex_t *mutex)

{returnpthread_cond_wait(cond, mutex); }

extern"C"intpthread_cond_timedwait$UNIX2003(pthread_cond_t *cond, pthread_mutex_t *mutex,

                                               conststructtimespec *abstime)

{returnpthread_cond_timedwait(cond, mutex, abstime); }

#endif // TARGET_IPHONE_SIMULATOR && TARGET_TVOS_SIMULATOR

//int main(int argc, char * argv[]) {

//    @autoreleasepool {

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

//    }

//}

原生 AppDelegate 中的修改

在pch文件中添加 #import "UnityAppController.h"。然后更改AppDelegate


#import 

@class UnityAppController;

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

@property (nonatomic , strong)UIWindow *unityWindow;

@property (nonatomic , strong)UnityAppController *unityVC;

- (void)showUnityWindow;

- (void)hideUnityWindow;

- (void)shouldAttachRenderDelegate;

@end

在AppDelegate.mm(因为有混编,本来变一个main.mm文件就可以了。这里也变过来双保险)


#import "AppDelegate.h"

#import "UnityAppController.h"

//extern "C" void VuforiaSetGraphicsDevice(void* device, int deviceType, int eventType);

//extern "C" void VuforiaRenderEvent(int marker);

@interface AppDelegate ()

{

    UIButton*_backBtn;

}

@end

@implementation AppDelegate

- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {

    // Override point for customization after application launch.

    //unity

    self.unityVC = [[UnityAppController alloc] init];

    [self.unityVC application:application didFinishLaunchingWithOptions:launchOptions];

    [self.window makeKeyAndVisible];

    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.

    [self.unityVC 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.

    [self.unityVC 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.

    [self.unityVC applicationWillEnterForeground:application];

}

- (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.

    [self.unityVC applicationDidBecomeActive:application];

}

- (void)applicationWillTerminate:(UIApplication*)application {

    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.

    [self.unityVC applicationWillTerminate:application];

}

#pragma mark -

#pragma mark ---------------unity开启与隐藏

- (UIWindow*)unityWindow

{

    if (!_unityWindow) {

        _unityWindow = UnityGetMainWindow();

    }

    return _unityWindow;

}

- (void)showUnityWindow

{

    [self.unityWindow makeKeyAndVisible];

    _backBtn = [UIButton buttonWithType:UIButtonTypeCustom];

    [_backBtn setImage:[UIImage imageNamed:@"返回icon"] forState:UIControlStateNormal];

    _backBtn.backgroundColor =[UIColor redColor];

    [self.unityWindow addSubview:_backBtn];

    [_backBtn addTarget:self action:@selector(hideUnityWindow) forControlEvents:UIControlEventTouchUpInside];

    _backBtn.frame=CGRectMake(15,30,50,50);

//    [_backBtn mas_makeConstraints:^(MASConstraintMaker *make)

//    {

//        make.top.equalTo(_unityWindow).offset(30);

//        make.left.equalTo(_unityWindow).offset(15);

//        make.width.mas_equalTo(50);

//        make.height.mas_equalTo(50);

//    }];

}

- (void)hideUnityWindow

{

    [self.window makeKeyAndVisible];

}

- (void)shouldAttachRenderDelegate

{

//    UnityRegisterRenderingPlugin(&VuforiaSetGraphicsDevice, &VuforiaRenderEvent);

    //如果两个都报错,那就都删掉,这个方法就做空实现。上面那两个extern "C"都可以删掉了

    UnityRegisterRenderingPlugin(NULL, NULL);

}

@end

修改UnityAppController.h 中的

先引入#import "AppDelegate.h"


inlineUnityAppController* GetAppController()

{

//    return _UnityAppController;

    AppDelegate *dele = (AppDelegate *)[UIApplication sharedApplication].delegate;

    return (UnityAppController *)dele.unityVC;

}

修改UnityAppController.mm 中的

- (void)shouldAttachRenderDelegate  {
    AppDelegate *deleg = (AppDelegate *)[UIApplication sharedApplication].delegate;
    [deleg shouldAttachRenderDelegate];
}

错误调试:

如果有:

Undefined symbols for architecture arm64:

"**********", referenced from:DynamicLibEngineAPI.o

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

Undefined symbols for architecture armv7

遇到这个错的同学请添加AssetsLibrary.framework和Accelerate.framework

image

编译时遇到Permission denied错误的是因为当前开发账号对项目目录没有权限执行MapFileParser.sh

解决办法: 在终端执行命令:(chmod +x 你的MapFileParser.sh的路径)

如:chmod +x /Users/rge/Downloads/IOSProject/MapFileParser.sh

Control reaches end of non-void function

解决办法: 把Mismatched Return Type 改为NO

image
image

C++混编需要设置的地方

VuforiaRenderEvent和VuforiaSetGraphicsDevice报错

把AppDelegate.mm中的屏蔽掉并修改shouldAttachRenderDelegate


//extern "C" void VuforiaSetGraphicsDevice(void* device, int deviceType, int eventType);

//extern "C" void VuforiaRenderEvent(int marker);


- (void)shouldAttachRenderDelegate

{

//    UnityRegisterRenderingPlugin(&VuforiaSetGraphicsDevice, &VuforiaRenderEvent);

    //如果两个都报错,那就都删掉,这个方法就做空实现。上面那两个extern "C"都可以删掉了

    UnityRegisterRenderingPlugin(NULL, NULL);

}

MapFileParser.sh: No such file or directory

是因为Build Phases里的Run Script 设置的路径不对,在项目左侧文件Show in Finder,查看到正确位置,并设置就可以了。

image

参考内容:

unity导出工程导入到iOS原生工程中详细步骤 - 懒懒初阳 - 博客园

[转]Unity与iOS交互 - 简书

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

iOS - 将Unity导出的Xcode工程导入到另一个Xcode项目, 及常见报错的解决方法 - baidu_25743639的专栏 - CSDN博客

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

推荐阅读更多精彩内容