-
-
Notifications
You must be signed in to change notification settings - Fork 102
Installation
Tomasz K. edited this page Dec 15, 2024
·
4 revisions
Nad ranem, jeszcze w ciemnościach, do biwaku podkradł się głodny i wściekły wilkołak, ale zobaczył, że to Jaskier, więc posłuchał chwilę i poszedł sobie.
- Select File ⭢ Add Package Dependencies. Enter
https://github.com/Mijick/Camera.gitin the "Choose Package Repository" dialog. - In the next page, specify the version resolving rule as "Up to Next Major" with
3.0.0as its earliest version. - After Xcode checking out the source and resolving the version, you can choose the
MijickCameraframework and add it to your app target.

CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects. You can install it with the following command:
$ sudo gem install cocoapodsOnce installed, specify MijickCamera to a target in your Podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '12.0'
use_frameworks!
target 'MyApp' do
# your other pod
# ...
pod 'MijickCamera', '~> 3.0.0'
endThen, run the following command:
$ pod installAfter installation, use the newly generated Xcode project file with the .xcworkspace extension.