#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
import UIKit
autoreleasepool {
UIApplicationMain(Process.argc, Process.unsafeArgv, nil, NSStringFromClass(AppDelegate.self))
}
UIApplicationMain(CommandLine.argc,
UnsafeMutableRawPointer(CommandLine.unsafeArgv).bindMemory(to: UnsafeMutablePointer<Int8>.self, capacity: Int(CommandLine.argc)), nil, NSStringFromClass(AppDelegate.self))
MAKING bridging header file
#import "AppDelegate.h"
//:configuration = Debug
SWIFT_OBJC_BRIDGING_HEADER = migrating/-Bridging-Header.h
//:configuration = Distribution
SWIFT_OBJC_BRIDGING_HEADER = migrating/-Bridging-Header.h
//:configuration = Release
SWIFT_OBJC_BRIDGING_HEADER = migrating/-Bridging-Header.h
//:completeSettings = some
SWIFT_OBJC_BRIDGING_HEADER
error: using bridging headers with module interfaces is unsupported
//:configuration = Debug
BUILD_LIBRARY_FOR_DISTRIBUTION = NO
//:configuration = Distribution
BUILD_LIBRARY_FOR_DISTRIBUTION = NO
//:configuration = Release
BUILD_LIBRARY_FOR_DISTRIBUTION = NO
//:completeSettings = some
BUILD_LIBRARY_FOR_DISTRIBUTION
'C++ > 현실세계 벤치마킹 -> 가상세계' 카테고리의 다른 글
포트나이트 레고, 유리를 찾아야 할 것 같다. (0) | 2024.08.28 |
---|---|
유니콘 오픈소스 (0) | 2022.10.22 |
Package Dependencies (0) | 2022.04.25 |
Xcode shortcuts for VS code (0) | 2022.03.07 |
Security (0) | 2022.03.06 |
최근댓글