###CocoaPods
To run the example project, clone the repo, and run pod install from the Example directory first.
- iOS 10.0+ / macOS 10.12+ / tvOS 10.0+ / watchOS 3.0+
- Xcode 10.2+
- Swift 5+
VHLoginView is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'VHLoginView'Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate VHLoginView into your Xcode project using Carthage, specify it in your Cartfile:
github "veronikahristozova/VHLoginView" "1.0.0"
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler. It is in early development, but VHLoginView does support its use on supported platforms.
Once you have your Swift package set up, adding VHLoginView as a dependency is as easy as adding it to the dependencies value of your Package.swift.
dependencies: [
.package(url: "https://github.com/veronikahristozova/VHLoginView.git", from: "1.0.0")
]If you prefer not to use any of those managers, you can integrate VHLoginView into your project manually.
-
Open up Terminal,
cdinto your top-level project directory, and run the following command "if" your project is not initialized as a git repository:$ git init
-
Add VHLoginView as a git submodule by running the following command:
$ git submodule add https://github.com/veronikahristozova/VHLoginView.git
-
Open the new
VHLoginViewfolder, and drag theVHLoginView.xcodeprojinto the Project Navigator of your application's Xcode project.It should appear nested underneath your application's blue project icon. Whether it is above or below all the other Xcode groups does not matter.
-
Select the
VHLoginView.xcodeprojin the Project Navigator and verify the deployment target matches that of your application target. -
Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar.
-
In the tab bar at the top of that window, open the "General" panel.
-
Click on the
+button under the "Embedded Binaries" section. -
You will see two different
VHLoginView.xcodeprojfolders each with two different versions of theVHLoginView.frameworknested inside aProductsfolder.It does not matter which
Productsfolder you choose from, but it does matter whether you choose the top or bottomVHLoginView.framework. -
Select the top
VHLoginView.frameworkfor iOS and the bottom one for macOS.You can verify which one you selected by inspecting the build log for your project. The build target for
VHLoginViewwill be listed as eitherVHLoginView iOS,VHLoginView macOS,VHLoginView tvOSorVHLoginView watchOS. -
And that's it!
The
VHLoginView.frameworkis automagically added as a target dependency, linked framework and embedded framework in a copy files build phase which is all you need to build on the simulator and a device.
Veronika Hristozova, veronikahristozova@gmail.com
VHLoginView is available under the MIT license. See the LICENSE file for more info.