CS 428 Spring 2015 Course Project
TicText requires Xcode 6 and iOS 7.
- Install all project dependencies from CocoaPods by running this script:
cd TicText-iOS
pod install
-
Open the Xcode workspace at
TicText-iOS/TicText.xcworkspace
. -
Create your TicText App on Parse.
-
Copy your new app's application id and client key into
AppDelegate.m
:
[Parse setApplicationId:@"APPLICATION_ID" clientKey:@"CLIENT_KEY"];
Finally, select the TicText
target and go to Build Phases
. Under Upload Symbol Files
, update line 3 to point to your Cloud Code folder, if any. If you're not using Cloud Code, feel free to remove the Upload Symbol Files
section.
-
Set up a Facebook app at http://developers.facebook.com/apps
-
Set up a URL scheme for fbFACEBOOK_APP_ID, where FACEBOOK_APP_ID is your Facebook app's id.
-
Add your Facebook app id to
Info.plist
in theFacebookAppID
key.
Add your Parse app id and master key to TicText-iOS/CloudCode/config/global.json
, then type parse deploy
from the command line at TicText-cloud
. See the Cloud Code Guide for more information about the parse
CLI.