Gaurav Vaish
Gaurav Vaish
@caridy Bingo. I assumed/expected the same :-) Basically, what I was looking at is - if I have mojits that have either common or client affinity controllers only, can Mojito...
Well, the "referenced issue" is - https://github.com/addyosmani/todomvc/pull/507
@caridy The issue that I am seeing is that even though all components have "common" affinity (controller + model), the `html5app` code generated makes a call to `/tunnel`. btw, the...
@caridy Cool. So, it seems the `todomvc` app has really served Mojito dev well :smile: Will await the updates. Take your time!
@caridy Is the Trello task done? I saw a notification > Jenny Donnelly checked Add missing tests to IDE integration suite [IDE no longer supported] on > [todomvc][gh1050] store-client does...
@caridy Will ping you directly.
Hi @idelovski, I have never seen this problem. I just compiled the app on `High Sierra 10.13.3` / `Xcode 9.1 (9B55)` and it ran just fine. Can you try cleaning...
`MyObserver` is an example observer here. The complete details have been omitted for brevity. A typical key-value observer requires the object to implement the method [`observeValue(forKeyPath:of:change:context:)`](https://developer.apple.com/documentation/objectivec/nsobject/1416553-observevalue). Let me know how...
Thanks for the errata. Will add these to the book. The correct code should be: ```objc -(id)init { //... omitted extraneous code for brevity //add observer [self.reachability startNotifier]; } //self....
Challenge: - `Activity`: No method `findViewWithTag`. https://github.com/JakeWharton/butterknife/blob/master/butterknife/src/main/java/butterknife/internal/Finder.java#L16 fails for `tag`. - `Dialog`: No method `findViewWithTag`. https://github.com/JakeWharton/butterknife/blob/master/butterknife/src/main/java/butterknife/internal/Finder.java#L39 fails for `tag`. `TODO`: Find an alternative.