Tag: #ios
How to make a Cocoa application without a
.xib
file To create a Cocoa app without a
.xib
file, remove the NSMainNibFile
key from the Info.plist
, and replace the @NSApplicationMain
annotation on your AppDelegate
class with a custom main.swift
file that manually sets up the application and its delegate. 2017-03-17How to add a developer account to XCode
Xcode uses “teams” to manage developer identities, and revoking a certificate on one device may require regenerating provisioning profiles. 2017-03-03
How to submit an app build to iTunes Connect
To submit a macOS app build to iTunes Connect, archive the app in Xcode, enable App Sandbox, then upload the build. 2017-03-02
All content copyright James Fisher.