Bryn Bodayle
Bryn Bodayle
Not sure if this codepath is hit, but noticed this in an audit of a larger codebase. https://github.com/aws/aws-sdk-ios/blob/e465aa8ed2f9051895c2b5865ec72b202a33d948/AWSCore/Mantle/AWSMTLModel.m#L149-L150 It's very possible for `property_getName` to return nil which would cause the...
There might be a better way to handle this, but basically if you are pushing a view controller onto a UINavigationController stack and you bring up the keyboard before it...
These keys in `FolderViewController` are reversed and cause some changes to call reloadData instead of the correct insert animation. This incorrect code is in the book as well. ``` let...
Loving the book so far! Noticed one issue in the MVC sample code. ``` override func viewDidAppear(_ animated: Bool) { super.viewWillAppear(animated) ``` https://github.com/objcio/app-architecture/blob/master/Recordings-MVC/Recordings/RecordViewController.swift#L17-L18