From 914a4c071d9ebd06c180f24f148753621ee0cac4 Mon Sep 17 00:00:00 2001 From: Dennis Hong Date: Sun, 30 Apr 2023 02:59:55 -0500 Subject: [PATCH] create bundle section --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/README.md b/README.md index 4f5c2a4..901ec7a 100644 --- a/README.md +++ b/README.md @@ -117,6 +117,10 @@ apple developer tutorial video link update - [Design Collaboration](#Design-Collaboration) - [Design Tools](#Design-Tools) - [Useful Sites](#useful-sites) +- [Bundle](#Bundle) + - [Static Library](#static-library) + - [Dynamic Library](#dynamic-library) + - [.xcframework](#.xcframework) - [Screen Layout Programmatically](#screen-layout-programmatically) - [Helper](#Helper) - [Email, Message, Call](#email-message-call) @@ -740,6 +744,30 @@ TBA Back to Content

+## Bundle + +[Bundles and Packages](https://nshipster.com/bundles-and-packages/) + +## Static Library + +## Dynamic Library + +## .xcframework + +XCFrameworks is a distributable binary package created by Xcode that contains variants of a framework or library so that it can be used on multiple platforms (iOS, macOS, tvOS, and watchOS), including Simulator builds + +[Creating a multiplatform binary framework bundle](https://developer.apple.com/documentation/xcode/creating-a-multi-platform-binary-framework-bundle) + + + + + + +

+Back to Content +

+ + ## Helper