XAlign icon indicating copy to clipboard operation
XAlign copied to clipboard

will support ReactiveCocoa align style?

Open yam-liu opened this issue 9 years ago • 0 comments

the default alignment

    [[[RACObserve(instance, propery)
       ignore:nil]
      combinePreviousWithStart:@0
      }] subscribeNext:^(NSNumber *result) {
        // something
    }];

should become ⬇️

    [[[RACObserve(instance, propery)
        ignore:nil]
        combinePreviousWithStart:@0
        }] subscribeNext:^(NSNumber *result) {
            // something
        }];

yam-liu avatar Jun 23 '16 11:06 yam-liu