- ASCII WWDC - WWDC session transcripts.
- NSHipster - Cocoa weekly from Mattt Thompson. Creator of AFNetworking.
- objc.io - Great resource where each issue consists of a collection posts that all focus on one over arching topic such as testing, Auto Layout, Swift, etc.
- Mike Ash - Self described as "Wizard without portfolio" Mike Ash is very widely read in the Cocoa community.
- Bill Bumgarner's Stack Overflow answers - Long time Apple developer who provides well written answers to some of the hairier questions on ObjC and iOS.
- iOS Dev Weekly - Excellent and widely read weekly that aggregates some of the best writing in the Cocoa developer community.
- Stable Kernel - Joe Conway, one of the original authors of BNR's Beginning iOS book and former BNR engineer and instructor.
- [Big Nerd Ran
| Shortcut | Action |
|---|---|---|
| control
1
| Jump to Related Files menu item to see: includes, callers, callees |
| control
6
| Jump to class method definitions overview. Simply begin typing to search. |
| alt
command
J
| Filter files in project navigator. |
| alt
command
L
| Filter Interface Builder Object Library |
| command
Y
| Enable / disable all breakpoints. |
- The Big Nerd Ranch blog has several posts on Swift. - http://www.bignerdranch.com/blog/categories/swift.html
- Apple's Swift blog is another resource I've started to reference. - https://developer.apple.com/swift/blog/
- NSHipster has a section on Swift at the bottom of the page. - http://nshipster.com/
- Erica Sadun's blog has several posts on Swift. - http://ericasadun.com/category/swift/
- Follow Christ Lattner, creator of Swift, on the Apple's developer forums. - https://devforums.apple.com/people/ChrisLattner
- Github's Swift style guide. - https://github.com/github/swift-style-guide
- .CLR files
~/Library/Colors
- Adobe Kuler - Color palette generator from Adobe.
- Color Picker -
- Prepo - Generate all icon sizes from an original.
- Glyphicons - library of precisely prepared monochromatic icons and symbols
Resources outside of the software development process: submission, reviewing sales, marketing, etc.
- Provisioning information - Provisioning profiles explained.
- Provisioning app - A Quick Look plug-in for .mobileprovision files
- What's My UDID?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Playground - noun: a place where people can play | |
import UIKit | |
import XCPlayground | |
XCPSetExecutionShouldContinueIndefinitely(continueIndefinitely: true) | |
let path = "http://www.reddit.com/r/simpleios.json" | |
let session = NSURLSession(configuration: NSURLSessionConfiguration.defaultSessionConfiguration()) | |
let url = NSURL(string: path) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install class-dump | |
brew install class-dump | |
# dump the frameworks you're interested in | |
class-dump -H -o UIKit /Applications/Xcode5-DP.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/System/Library/Frameworks/UIKit.framework | |
class-dump -H -o SpringBoardUI /Applications/Xcode5-DP.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/System/Library/PrivateFrameworks/SpringBoardUI.framework |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Swift 2.2 | |
// Xcode Version 7.3 (7D175) | |
// 1 | |
do { | |
try coordinator.addPersistentStoreWithType(NSSQLiteStoreType, configuration: nil, URL: url, options: nil) | |
} catch { | |
var dict = [String: AnyObject]() | |
// Build warning: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Hide Reddit username new design (2018-) */ | |
div[class*="s1ilcdod-18 dsBbYg"] { | |
visibility: hidden; | |
} | |
/* Hide Reddit username old design (pre-2018) */ | |
span[class="user"] { | |
visibility: hidden !important; | |
} |
OlderNewer