I am fairly new to iOS development, and have a project in mind that would benefit from a third-party calendar interface. However, I'm having trouble just getting started. Feeling a little disappointed as well because I have searched high and low and it seems everyone is capable of integrating Kal Calendar itself, and that is where I am stuck.
I have downloaded the .zip source here and am trying to follow the steps. The first three are as follows:
- Clone the Kal git repository:
git clone git://github.com/klazuka/Kal.git
. Make sure you store the repository in a permanent place because Xcode will need to reference the files every time you compile your project. - Locate the "Kal.xcodeproj" file under
Kal/src/
. Drag Kal.xcodeproj and drop it onto the root of your Xcode project's "Groups and Files" sidebar. A dialog will appear -- make sure "Copy items" is unchecked and "Reference Type" is "Relative to Project" before clicking "Add". - Now you need to link the Kal static library to your project. Select the Kal.xcodeproj file that you just added to the sidebar. Under the "Details" table, you will see libKal.a. Check the checkbox on the far right for this file. This will tell Xcode to link against Kal when building your app.
I have dragged the Kal.xcodeproj file from Finder into the root of my project in the Project Navigator as seen in this image:
Is this the correct place to drop the Kal.xcodeproj file? I was not presented with a dialog upon doing so. What is the "Groups and Files" sidebar? Upon selecting the Kal.xcodeproj file from where I have placed it, I cannot find a "Details" table where a libKal.a file is located.
Again, my apologies as I am fairly new to iOS dev, and I completely understand that these could be the most amateur questions out there. If anyone can point me in the right direction it would be greatly appreciated. Just looking for some help getting started so I can finally begin my project.
By the way, I'm using Xcode 6.
Thanks in advance!