Oleksandr Dodatko
Oleksandr Dodatko
Here is a fat binary built with `lipo create` [Reachability.framework.zip](https://github.com/tonymillion/Reachability/files/377828/Reachability.framework.zip)
The warnings come up since ARC is disabled in the project settings  Please consider removing legacy non-ARC code to prevent new users...
The home repo (EasyMapping/EasyMapping) seems to have the API to solve this problem. https://github.com/EasyMapping/EasyMapping/blob/master/EasyMapping/EKObjectMapping.h#L167 Please merge it to your fork.
> > Я подумал, что такой контрол может быть удобен для отображения загрузки разных вещей и что он может пригодиться где-то еще — и вынес его в отдельный фреймворк If...
``` objective-c - (void)collectClasses { #ifdef __IPHONE_OS_VERSION_MIN_REQUIRED uint classesCount; const char *imageName = class_getImageName(object_getClass(self)); const char **classNames = objc_copyClassNamesForImage(imageName, &classesCount); for (uint index = 0; index < classesCount; index++) {...
It's not about optimizations. It's rather about proper resources management (memory) and avoiding crashes. > What should I do in case when [NSArray new] returns nil? Nothing since it is...
> there a lot of cases when something might be broken, should we cover all them? Critical crashes should be addressed in no doubt. Still, you are the maintainer and...
The project uses iphoneos4 base SDK. Make sure that you are using "Latest iOS SDK" option in your build settings.
So what is the client code workaround or approach for dealing with `UINavigationController` ? How about adding some hints to the `README.md` file? I've faced the issue when the `NavigationState.route`...
Sorry for spamming. I've found the "invoke route manually in `viewWillDisappear`" [workaround](https://github.com/ReSwift/GitHubBrowserExample/blob/fe99330a323400cfddc758a3c860de27912ece43/SwiftFlowGitHubBrowser/ViewControllers/BookmarkViewController.swift#L41) in a github client example. Still, isn't this approach worth mentioning in a readme? At least until a...