Get it on Google Play


Wm뮤 :: '애플/스위프트' 카테고리의 글 목록

블로그 이미지
가끔 그림그리거나 3D모델링하거나
취미로 로봇만드는
전자과 게임프로그래머 (퇴사함)
2022.3.22f1 주로 사용
모카쨩
@Ahzkwid

Recent Comment

Archive


'애플/스위프트'에 해당되는 글 3건

  1. 2022.06.18 아이폰 무선빌드
  2. 2021.05.03 스위프트 정적 라이브러리 생성방법
  3. 2021.04.28 유니티 스위프트 Unity Swift
2022. 6. 18. 12:06 애플/스위프트

 

 

 

 

 

'애플 > 스위프트' 카테고리의 다른 글

스위프트 정적 라이브러리 생성방법  (0) 2021.05.03
유니티 스위프트 Unity Swift  (0) 2021.04.28
posted by 모카쨩
2021. 5. 3. 10:14 애플/스위프트

 

 

 

 

 

 

'애플 > 스위프트' 카테고리의 다른 글

아이폰 무선빌드  (0) 2022.06.18
유니티 스위프트 Unity Swift  (0) 2021.04.28
posted by 모카쨩
2021. 4. 28. 17:50 애플/스위프트

 

 

 

2019.3 버전일경우

stackoverflow.com/questions/31636408/write-unity-ios-plugin-in-swift-code

 

이후버전일경우 참고자료

qiita.com/mao_/items/2305822054dadb2c5da8

qiita.com/ohbashunsuke/items/8f3b7c733fc70a180941

 

 

 

유니티 내부에 세가지 파일을 만들어 준다

Plugins/iOS/Bridge.mm

Plugins/iOS/SwiftTest.swift

Scriptes/SwiftTest.cs

 

 

Bridge.mm과 SwiftTest.swift는 텍스트문서를 이용해 만들고 확장자를 바꿔준다.

 

 

 

그리고 아래같이 입력해준다

Bridge.mm과 SwiftTest.swift는 텍스트문서로 열거나 IDE로 열면 된다.

//SwiftTest.cs

using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using UnityEngine;

public class SwiftTest : MonoBehaviour
{
    [DllImport("__Internal")]
    private static extern void callSwiftTestFunc();

    void Start()
    {
        Press();
    }


    public void Press()
    {
        callSwiftTestFunc();
    }
}
//Bridge.mm
#import <UnityFramework/UnityFramework-Swift.h>

extern "C" {
  void callSwiftTestFunc() {
      [SwiftTest testFunc];
  }
}
//SwiftTest.swift

import Foundation

@objc public class SwiftTest : NSObject {
    @objc public static func testFunc() {
        print("Swift Test")
    }
}

 

 

 

 

빌드하고 실행해서 실행해보면 다음과 같이 xcode 로그에 뜬다

 

 

 

 

 

 

 

 

인자받을수 있게 개조할것이다

//SwiftTest.cs

using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using UnityEngine;

public class SwiftTest : MonoBehaviour
{
    [DllImport("__Internal")]
    private static extern void callSwiftTestFunc();


    [DllImport("__Internal")]
    private static extern void callSwiftTestFunc2(string text);


    void Start()
    {
        Press();
    }


    public void Press()
    {
        callSwiftTestFunc();
        callSwiftTestFunc2(Time.time.ToString());
    }
}
//Bridge.mm
#import <Foundation/Foundation.h>
#import <UnityFramework/UnityFramework-Swift.h>

extern "C" {
  void callSwiftTestFunc() {
      [SwiftTest testFunc];
  }
  void callSwiftTestFunc2(const char *text) {
      [SwiftTest testFunc2 :[NSString stringWithUTF8String:text]];
  }
}
//SwiftTest.swift

import Foundation

@objc public class SwiftTest : NSObject {
    @objc public static func testFunc() {
        print("Swift Test")
    }
    @objc public static func testFunc2(_ text: String) {
        print("Swift Test2\(text)")
    }

}

 

 

 

결과

 

 

 

 

하지만 함수는 리턴값이 있어야 쓸만하지 않은가

그래서 한번 더 개조했다

참고한곳 : stackoverflow.com/questions/37047781/how-to-return-string-from-native-ios-plugin-to-unity

//SwiftTest.cs

using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using UnityEngine;
using UnityEngine.UI;

public class SwiftTest : MonoBehaviour
{
    [DllImport("__Internal")]
    private static extern void callSwiftTestFunc();


    [DllImport("__Internal")]
    private static extern void callSwiftTestFunc2(string text);



    [DllImport("__Internal")]
    private static extern int callSwiftTestFunc3();


    [DllImport("__Internal")]
    private static extern string callSwiftTestFunc4();




    public Text UItext;


    void Start()
    {
    }


    public void Press()
    {
        callSwiftTestFunc();
        callSwiftTestFunc2(Time.time.ToString());
        UItext.text = callSwiftTestFunc3().ToString();
        UItext.text +="\n"+callSwiftTestFunc4().ToString();
    }
}
//Bridge.mm


#import <Foundation/Foundation.h>
#import <UnityFramework/UnityFramework-Swift.h>

extern "C" {
  void callSwiftTestFunc() 
  {
      [SwiftTest testFunc];
  }
  
  void callSwiftTestFunc2(const char *text) 
  {
      [SwiftTest testFunc2 :[NSString stringWithUTF8String:text]];
  }
  
  int callSwiftTestFunc3()
  {
      return [SwiftTest testFunc3];
  }
  
  
  
  
  char* callSwiftTestFunc4() 
  {
	  NSString* nsStr=[SwiftTest testFunc4];
	  const char* nsStrUTF8=(char*)[nsStr UTF8String];
	  char* cString=(char*)malloc(strlen(nsStrUTF8)+1);
	  strcpy(cString, nsStrUTF8);
      return cString;
  }
}
import Foundation

@objc public class SwiftTest : NSObject 
{
    @objc public static func testFunc() 
	{
        print("Swift Test")
    }
	
    @objc public static func testFunc2(_ text: String) 
	{
        print("Swift Test2\(text)")
    }
	
    @objc public static func testFunc3() -> Int 
	{
        print("testFunc3")
        return (Int)(NSDate().timeIntervalSince1970)
    }

    @objc public static func testFunc4() -> String 
	{
        print("testFunc4")
		let dateFormatter = DateFormatter()
		dateFormatter.dateFormat = "yyyy-MM-dd HH:mm:ss"
        return dateFormatter.string(from:Date())
    }
}

 

 

잘된다

 

 

'애플 > 스위프트' 카테고리의 다른 글

아이폰 무선빌드  (0) 2022.06.18
스위프트 정적 라이브러리 생성방법  (0) 2021.05.03
posted by 모카쨩

저사양 유저용 블로그 진입