0

I'm following this tutorial on Github to learn how to use SwiftyDropbox, and I've followed the steps to the point where I should be able to run the app, and I log into Dropbox. However, when I run the app on my phone, I just get a blank screen. Can someone help me figure out why?

Here's the code for my AppDelegate

enter image description here

The ViewController

enter image description here

the plist

enter image description here

and the podfile

enter image description here

Theodore.K
  • 384
  • 2
  • 7
  • 21
  • You're surrounding your app key with angle brackets in the call to `setupWithAppKey`. It should be just string of the app key itself, no brackets. – Greg Dec 29 '16 at 22:44
  • Also, are you getting any error/output in the console? – Greg Dec 29 '16 at 22:45
  • @Greg I'm getting an error "Thread 1: signal SIGABRT" on the line "class AppDelegate: UIResponder, UIApplicationDelegate {" – Theodore.K Dec 30 '16 at 00:04
  • It looks like you accepted and answer here and posted the other error here: https://stackoverflow.com/questions/41389361/what-can-i-do-to-fix-the-error-thread-1-signal-sigabrt so I'll take a look there. – Greg Dec 30 '16 at 15:34

1 Answers1

0

The tutorial isn't exhaustive of every step you need to take to run the app. If you download the whole project and open TestSwifty > TestSwifty_iOS > TestSwifty_iOS.xcworkspace, you'll see in the Main.storyboard that there are buttons, which are connected to code.

travis
  • 146
  • 12