Adrian Tofan
Adrian Tofan
I forgot to tell you that I am using ST 2. In the mean time I've installed Sublime Text 3 with Elm syntax higgling. I've got other errors complaining about...
Yes, Here is the code: ``` @interface ViewController:UIViewController @property (nonatomic,strong,readwrite) RVMViewModel* viewModel; @end @implementation ViewController -(void)viewDidLoad{ [super viewDidLoad]; self.viewModel = [[RVMViewModel alloc] init]; [[[[RACSignal combineLatest:@[ /*A */ self.viewModel.didBecomeActiveSignal]] /*B RACObserve(self.viewModel,active)]]...
@ashfurrow no, that was a typo. Sorry about that
Hello, This one needs a public fetchResultsController for subclass use. As Realm doesn't support cascading deletes, it is not feasible to do the delete in a general way. Each subclass...
Workaround: - in Project Structure -> Modules , select your module (if you have multiple modules), then in Sources, select android folder and exclude - if you have a `.iml`...
Yes I have the same problem. I will try to reproduce it in a clear context knowing that the original one is rather complex. Unfortunately my storyboard doesn't build in...
Now I can see how the problem arrises. In face `self` is optimized out ... I am in viewDidLoad and after a few assignment statements self becomes nil : ```...
Here is the code: ``` - (void)viewDidLoad{ [super viewDidLoad]; _syncStatus = ATSyncControllerStatusUnkonwn; _cancelSignal = [[RACReplaySubject alloc] init]; ATSyncControllerViewModel* viewModel = [[ATSyncControllerViewModel alloc] init]; _viewModel = viewModel; viewModel.cancelSignal = _cancelSignal; RAC(self.introView,hidden)...