Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Firebase Ios Sdk | 4,475 | 7,327 | 15 hours ago | 194 | September 19, 2022 | 372 | apache-2.0 | Objective-C | ||
Firebase SDK for Apple App Development | ||||||||||
Appstoreconnect Swift Sdk | 1,175 | 9 days ago | 5 | other | Swift | |||||
The Swift SDK to work with the App Store Connect API from Apple. | ||||||||||
Philipshuesdk Ios Osx | 579 | 2 years ago | 35 | Objective-C | ||||||
The Software Development Kit for Philips Hue on iOS and OS X (beta) | ||||||||||
Pingpp Ios | 444 | 38 | a year ago | 40 | November 19, 2021 | 14 | Objective-C | |||
Adaptysdk Ios | 325 | 1 | 16 hours ago | 75 | November 09, 2022 | mit | Swift | |||
iOS SDK for growing mobile in-app purchases | ||||||||||
Usd Resources | 293 | 2 years ago | ||||||||
A curated list of USD projects and resources | ||||||||||
Dialogflow Apple Client | 239 | 31 | 4 years ago | 32 | September 24, 2017 | 22 | apache-2.0 | Objective-C | ||
iOS SDK for Dialogflow | ||||||||||
Pdfxkit | 204 | a year ago | 1 | other | Objective-C | |||||
A drop-in replacement for Apple PDFKit powered by our PSPDFKit framework under the hood. | ||||||||||
Objc Sdk | 195 | 434 | 3 months ago | 233 | March 25, 2021 | 16 | apache-2.0 | Objective-C | ||
LeanCloud Objective-C SDK | ||||||||||
Radar Covid Ios | 147 | 8 months ago | 12 | mpl-2.0 | Swift | |||||
Native iOS app using DP^3T iOS sdk to handle Exposure Notification framework from Apple |
Flycheck extension for Apple's Swift programming language.
Install flycheck-swift
package from MELPA.
Add the following line to the ~/.emacs.d/init.el
or ~/.emacs
.
(eval-after-load 'flycheck '(flycheck-swift-setup))
If you compile against iOS SDK, add the following lines:
(setq flycheck-swift-sdk-path "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk")
;; ↑ Select the appropriate SDK version you use
(setq flycheck-swift-target "arm64-apple-ios10")
Install Flycheck.
git clone --depth 1 https://github.com/swift-emacs/flycheck-swift.git
cd flycheck-swift
emacs --batch -l package -f package-initialize --eval '(package-install-file "flycheck-swift.el")'
Add the following line to the ~/.emacs.d/init.el
or ~/.emacs
.
(eval-after-load 'flycheck '(flycheck-swift-setup))
If you compile against iOS SDK, add the following lines:
(setq flycheck-swift-sdk-path "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk")
;; ↑ Select the appropriate SDK version you use
(setq flycheck-swift-target "arm64-apple-ios10")
Install cask.
git clone https://github.com/swift-emacs/flycheck-swift.git
cd flycheck-swift
make install
Add the following line to the ~/.emacs.d/init.el
or ~/.emacs
.
(eval-after-load 'flycheck '(flycheck-swift-setup))
If you compile against iOS SDK, add the following lines:
(setq flycheck-swift-sdk-path "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk")
;; ↑ Select the appropriate SDK version you use
(setq flycheck-swift-target "arm64-apple-ios10")
The name of the executable, i.e. swiftc
.
Extra flags prepended to arguments of swiftc.
A name of the targeted SDK or path to the targeted SDK.
A list of source file paths to link against. Each path can be glob, i.e. *.swift
.
A list of framework search paths.
A list of include file search paths to pass to the Objective-C compiler.
Target used by swift compiler.
Objective C header file to import.
GPLv3. See COPYING for details. Copyright (C) 2014-2016 taku0, Chris Barrett, Bozhidar Batsov, Arthur Evstifeev.