ReactiveCocoa is so useful that I can’t stop using it

ReactiveCocoa is so useful that I can’t stop using it

[[145435]]

Foreplay

I personally highly recommend ReactiveCocoa. It is like the Chinese Tai Chi. Tai Chi gives birth to two opposites, two opposites give birth to four images, four images give birth to eight trigrams, and eight trigrams give birth to all things. ReactiveCocoa is a highly abstract programming framework. It is really abstract. At first glance, you don't know what it is for. After you use it, you will find that with it, you can do whatever you want. Coding has never been so smooth.

I won’t explain the principles of ReactiveCocoa here, because things that cannot be explained clearly are called abstract. I won’t mention related concepts either. I just want to show you how happy I am using it.

Forty-eight Hands of Code

Observation value

Don't move. I'll know if you move.

  1. @weakify(self);
  2. [RACObserve(self, value) subscribeNext:^(NSString* x) {
  3. @strongify(self);
  4. NSLog(@ "You moved" );
  5. }];

unilateral

You sing and I dance.

The content length of textField is mapped to a BOOL value and bound to the enable property of confirmButton. When the textField input content is not empty, confirmButton's enable = YES.

  1. RACSignal *signalA = [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  2. [subscriber sendNext:@ "sing" ];
  3. [subscriber sendCompleted];
  4. return nil;
  5. }];
  6. RAC(self, value) = [signalA map:^id(NSString* value) {
  7. if ([value isEqualToString:@ "Singing" ]) {
  8. return @ "dance" ;
  9. }
  10. return @ "" ;
  11. }];

bilateral

If you go west, he goes east; if he goes left, you go right.

    
  1. RACChannelTerminal *channelA = RACChannelTo(self, valueA);
  2. RACChannelTerminal *channelB = RACChannelTo(self, valueB);
  3. [[channelA map:^id(NSString *value) {
  4. if ([value isEqualToString:@ "西" ]) {
  5. return @ "East" ;
  6. }
  7. return value;
  8. }]subscribe:channelB];
  9. [[channelB map:^id(NSString *value) {
  10. if ([value isEqualToString:@ "left" ]) {
  11. return @ "right" ;
  12. }
  13. return value;
  14. }]subscribe:channelA];
  15. [[RACObserve(self, valueA) filter:^BOOL(id value) {
  16. return value ? YES : NO;
  17. }] subscribeNext:^(NSString* x) {
  18. NSLog(@ "You to %@" , x);
  19. }];
  20. [[RACObserve(self, valueB) filter:^BOOL(id value) {
  21. return value ? YES : NO;
  22. }] subscribeNext:^(NSString* x) {
  23. NSLog(@ "He said %@" , x);
  24. }];
  25. self.valueA = @ "西" ;
  26. self.valueB = @ "left" ;
  1. 2015-08-15 20:14:46.544 Test[2440:99901] You go west
  2. 2015-08-15 20:14:46.544 Test[2440:99901] He went east
  3. 2015-08-15 20:14:46.545 Test[2440:99901] He turned left
  4. 2015-08-15 20:14:46.545 Test[2440:99901] You turn right

acting

You are a programmer, please help me write an app.

  1. @protocol Programmer <NSObject>
  2. - ( void )makeAnApp;
  3. @end
  1. RACSignal *ProgrammerSignal =
  2. [self rac_signalForSelector:@selector(makeAnApp)
  3. fromProtocol:@protocol(Programmer)];
  4. [ProgrammerSignal subscribeNext:^(RACTuple* x) {
  5. NSLog(@ "It took a month to write the app" );
  6. }];
  7. [self makeAnApp];
  1. 2015-08-15 20:46:45.720 Test[2817:114564] It took a month to write the app

broadcast

Knowing your channel, I can hear you.

  1. [[[NSNotificationCenter defaultCenter] rac_addObserverForName:@ "Code Channel" object:nil] subscribeNext:^(NSNotification* x) {
  2. NSLog(@ "skills: %@" , x.userInfo[@ "skills" ]);
  3. }];
  4. [[NSNotificationCenter defaultCenter] postNotificationName:@ "Code Channel" object:nil userInfo:@{@ "Skills" :@ "Write with care" }];
  1. 2015-08-15 20:41:15.786 Test[2734:111505] Tips: Write carefully

connect

Life is one story after another.

  1. RACSignal *signalA = [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  2. [subscriber sendNext:@ "I'm in love" ];
  3. [subscriber sendCompleted];
  4. return nil;
  5. }];
  6. RACSignal *signalB = [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  7. [subscriber sendNext:@ "I'm getting married" ];
  8. [subscriber sendCompleted];
  9. return nil;
  10. }];
  11. [[signalA concat:signalB] subscribeNext:^(id x) {
  12. NSLog(@ "%@" ,x);
  13. }];
  1. 2015-08-15 12:19:46.707 Test[1845:64122] I'm in love
  2. 2015-08-15 12:19:46.707 Test[1845:64122] I'm married

merge

Sewage should flow into sewage treatment plants for treatment.

  1. RACSignal *signalA = [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  2. [subscriber sendNext:@ "paper mill wastewater" ];
  3. return nil;
  4. }];
  5. RACSignal *signalB = [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  6. [subscriber sendNext:@ "electroplating plant wastewater" ];
  7. return nil;
  8. }];
  9. [[RACSignal merge:@[signalA, signalB]] subscribeNext:^(id x) {
  10. NSLog(@ "Processing%@" , x);
  11. }];
  1. 2015-08-15 12:10:05.371 Test[1770:60147] Treating paper mill wastewater
  2. 2015-08-15 12:10:05.372 Test[1770:60147] Treatment of electroplating plant wastewater

combination

You are red and I am yellow, so we are red and yellow. You are white and I have not changed, so we are white and yellow.

  1. RACSignal *signalA = [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  2. [subscriber sendNext:@ "red" ];
  3. [subscriber sendNext:@ "白" ];
  4. return nil;
  5. }];
  6. RACSignal *signalB = [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  7. [subscriber sendNext:@ "白" ];
  8. return nil;
  9. }];
  10. [[RACSignal combineLatest:@[signalA, signalB]] subscribeNext:^(RACTuple* x) {
  11. RACTupleUnpack(NSString *stringA, NSString *stringB) = x;
  12. NSLog(@ "We are %@%@" , stringA, stringB);
  13. }];
  1. 2015-08-15 12:14:19.837 Test[1808:62042] We are red and yellow
  2. 2015-08-15 12:14:19.837 Test[1808:62042] We are white and yellow

compression

You are red and I am yellow, we are red and yellow, you are white, I haven't changed, oh, then wait until I change.

  1. RACSignal *signalA = [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  2. [subscriber sendNext:@ "red" ];
  3. [subscriber sendNext:@ "白" ];
  4. return nil;
  5. }];
  6. RACSignal *signalB = [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  7. [subscriber sendNext:@ "白" ];
  8. return nil;
  9. }];
  10. [[signalA zipWith:signalB] subscribeNext:^(RACTuple* x) {
  11. RACTupleUnpack(NSString *stringA, NSString *stringB) = x;
  12. NSLog(@ "We are %@%@" , stringA, stringB);
  13. }];
  1. 2015-08-15 20:34:24.274 Test[2660:108483] We are red and white

Mapping

I can turn stone into gold.

  1. RACSignal *signal = [[RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  2. [subscriber sendNext:@ "石" ];
  3. return nil;
  4. }] map:^id(NSString* value) {
  5. if ([value isEqualToString:@ "石" ]) {
  6. return @ "gold" ;
  7. }
  8. return value;
  9. }];
  10. [signal subscribeNext:^(id x) {
  11. NSLog(@ "%@" , x);
  12. }];
  1. 2015-08-16 20:00:12.853 Test[740:15871] Gold

Reduction

Sugar plus water turns into sugar water.

  1. RACSignal *sugarSignal = [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  2. [subscriber sendNext:@ "sugar" ];
  3. return nil;
  4. }];
  5. RACSignal *waterSignal = [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  6. [subscriber sendNext:@ "water" ];
  7. return nil;
  8. }];
  9. [[RACSignal combineLatest:@[sugarSignal, waterSignal] reduce:^id (NSString* sugar, NSString*water){
  10. return [sugar stringByAppendingString:water];
  11. }] subscribeNext:^(id x) {
  12. NSLog(@ "%@" , x);
  13. }];
  1. 2015-08-16 20:07:00.356 Test[807:19177] Sugar water

filter

No entry for those under 18 years old.

  1. [[[RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  2. [subscriber sendNext:@(15)];
  3. [subscriber sendNext:@(17)];
  4. [subscriber sendNext:@(21)];
  5. [subscriber sendNext:@(14)];
  6. [subscriber sendNext:@(30)];
  7. return nil;
  8. }] filter:^BOOL(NSNumber* value) {
  9. return value.integerValue >= 18;
  10. }] subscribeNext:^(id x) {
  11. NSLog(@ "%@" , x);
  12. }];
  1. 2015-08-16 20:11:20.071 Test[860:21214] 21
  2. 2015-08-16 20:11:20.071 Test[860:21214] 30

Flat

Beat the eggs, fry the eggs and serve.

  1. [[[[RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  2. NSLog(@ "egg liquid" );
  3. [subscriber sendNext:@ "egg liquid" ];
  4. [subscriber sendCompleted];
  5. return nil;
  6. }] flattenMap:^RACStream *(NSString* value) {
  7. return [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  8. NSLog(@ "Pour %@ into the pan and fry" ,value);
  9. [subscriber sendNext:@ "Fried Egg" ];
  10. [subscriber sendCompleted];
  11. return nil;
  12. }];
  13. }] flattenMap:^RACStream *(NSString* value) {
  14. return [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  15. NSLog(@ "Put %@ on disk" , value);
  16. [subscriber sendNext:@ "serve" ];
  17. [subscriber sendCompleted];
  18. return nil;
  19. }];
  20. }] subscribeNext:^(id x) {
  21. NSLog(@ "%@" , x);
  22. }];
  1. 2015-08-16 20:39:34.786 Test[1226:34386] Beat the egg
  2. 2015-08-16 20:39:34.787 Test[1226:34386] Pour the egg liquid into the pan and fry
  3. 2015-08-16 20:39:34.787 Test[1226:34386] Put the fried eggs on the plate
  4. 2015-08-16 20:39:34.787 Test[1226:34386] Serving

order

It only takes three steps to stuff an elephant into the refrigerator: open the refrigerator door, stuff the elephant into the refrigerator, and close the refrigerator door.

  1. [[[[RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  2. NSLog(@ "Open refrigerator door" );
  3. [subscriber sendCompleted];
  4. return nil;
  5. }] then:^RACSignal *{
  6. return [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  7. NSLog(@ "Put the elephant in the refrigerator" );
  8. [subscriber sendCompleted];
  9. return nil;
  10. }];
  11. }] then:^RACSignal *{
  12. return [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  13. NSLog(@ "Close the refrigerator door" );
  14. [subscriber sendCompleted];
  15. return nil;
  16. }];
  17. }] subscribeCompleted:^{
  18. NSLog(@ "Put the elephant in the refrigerator" );
  19. }];
  1. 2015-08-16 20:45:27.724 Test[1334:37870] Open the refrigerator door
  2. 2015-08-16 20:45:27.725 Test[1334:37870] Stuff the elephant into the refrigerator
  3. 2015-08-16 20:45:27.725 Test[1334:37870] Close the refrigerator door
  4. 2015-08-16 20:45:27.726 Test[1334:37870] Stuffed the elephant into the refrigerator

Order

I command you to surrender immediately.

  1. RACCommand *aCommand = [[RACCommand alloc] initWithSignalBlock:^RACSignal *(id input) {
  2. return [RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  3. NSLog(@ "I surrender" );
  4. [subscriber sendCompleted];
  5. return nil;
  6. }];
  7. }];
  8. [aCommand execute:nil];
  1. 2015-08-16 20:54:32.492 Test[1450:41849] I surrender

Delay

Wait for me, I'll be there in 10 seconds.

  1. [[[RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  2. NSLog(@ "Wait for me, I'll be there in 10 seconds" );
  3. [subscriber sendNext:nil];
  4. [subscriber sendCompleted];
  5. return nil;
  6. }] delay:10] subscribeNext:^(id x) {
  7. NSLog(@ "I'm here" );
  8. }];
  1. 2015-08-16 21:00:57.622 Test[1619:45924] Wait for me, I'll be there in 10 seconds
  2. 2015-08-16 21:01:07.624 Test[1619:45924] I'm here

Replay

Make it once, watch it many times.

  1. RACSignal *replaySignal = [[RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  2. NSLog(@ "The famous director made a movie called "My Boyfriend is a Programmer"" );
  3. [subscriber sendNext:@ "《My Boyfriend is a Programmer》" ];
  4. return nil;
  5. }] replay];
  6. [replaySignal subscribeNext:^(id x) {
  7. NSLog(@ "Xiao Ming read %@" , x);
  8. }];
  9. [replaySignal subscribeNext:^(id x) {
  10. NSLog(@ "Xiaohong also watched %@" , x);
  11. }];
  1. 2015-08-16 21:18:38.002 Test[1854:54712] A famous director made a movie called "My Boyfriend is a Programmer"
  2. 2015-08-16 21:18:38.004 Test[1854:54712] Xiao Ming watched "My Boyfriend is a Programmer"
  3. 2015-08-16 21:18:38.004 Test[1854:54712] Xiaohong also watched "My Boyfriend is a Programmer"

timing

Take this medicine every 8 hours.

  1. [[RACSignal interval:60*60*8 onScheduler:[RACScheduler mainThreadScheduler]] subscribeNext:^(id x) {
  2. NSLog(@ "Take medicine" );
  3. }];

time out

I've been waiting for you for an hour, and you haven't come yet, so I'm leaving.

  1. [[[RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  2. [[[RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  3. NSLog(@ "I'm almost there" );
  4. [subscriber sendNext:nil];
  5. [subscriber sendCompleted];
  6. return nil;
  7. }] delay:60*70] subscribeNext:^(id x) {
  8. [subscriber sendNext:nil];
  9. [subscriber sendCompleted];
  10. }];
  11. return nil;
  12. }] timeout:60*60 onScheduler:[RACScheduler mainThreadScheduler]] subscribeError:^(NSError *error) {
  13. NSLog(@ "I've been waiting for you for an hour, but you haven't come yet, so I'm leaving" );
  14. }];
  1. 2015-08-16 21:40:09.068 Test[2041:64720] I'm almost there
  2. 2015-08-16 22:40:10.048 Test[2041:64720] I've been waiting for you for an hour, but you haven't come yet. I'm leaving.

Retry

It may take hundreds of failures before success.

  1. __block int failedCount = 0;
  2. [[[RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  3. if (failedCount < 100) {
  4. failedCount++;
  5. NSLog(@ "I failed" );
  6. [subscriber sendError:nil];
  7. } else {
  8. NSLog(@ "After hundreds of failures" );
  9. [subscriber sendNext:nil];
  10. }
  11. return nil;
  12. }] retry] subscribeNext:^(id x) {
  13. NSLog(@ "Finally succeeded" );
  14. }];
  1. 2015-08-16 21:59:07.159 Test[2411:77080] I failed
  2. 2015-08-16 21:59:07.159 Test[2411:77080] I failed
  3. 2015-08-16 21:59:07.159 Test[2411:77080] I failed
  4. 2015-08-16 21:59:07.159 Test[2411:77080] I failed
  5. 2015-08-16 21:59:07.160 Test[2411:77080] I failed
  6. 2015-08-16 21:59:07.160 Test[2411:77080] I failed
  7. 2015-08-16 21:59:07.161 Test[2411:77080] I failed
  8. 2015-08-16 21:59:07.162 Test[2411:77080] I failed
  9. ...
  10. 2015-08-16 21:59:07.162 Test[2411:77080] I failed
  11. 2015-08-16 21:59:07.163 Test[2411:77080] I failed
  12. 2015-08-16 21:59:07.163 Test[2411:77080] I failed
  13. 2015-08-16 21:59:07.163 Test[2411:77080] I failed
  14. 2015-08-16 21:59:07.164 Test[2411:77080] I failed
  15. 2015-08-16 21:59:07.164 Test[2411:77080] I failed
  16. 2015-08-16 21:59:07.164 Test[2411:77080] I failed
  17. 2015-08-16 21:59:07.165 Test[2411:77080] After hundreds of failures
  18. 2015-08-16 21:59:07.165 Test[2411:77080] Finally succeeded

Throttling

Sorry, only one person can pass through here per second.

  1. [[[RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  2. [subscriber sendNext:@ "Passenger A" ];
  3. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  4. [subscriber sendNext:@ "Passenger B" ];
  5. });
  6. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  7. [subscriber sendNext:@ "Passenger C" ];
  8. [subscriber sendNext:@ "Passenger D" ];
  9. [subscriber sendNext:@ "Passenger E" ];
  10. });
  11. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  12. [subscriber sendNext:@ "Passenger F" ];
  13. });
  14. return nil;
  15. }] throttle:1] subscribeNext:^(id x) {
  16. NSLog(@ "%@ passed" , x);
  17. }];
  1. 2015-08-16 22:08:45.677 Test[2618:83764] Passenger A
  2. 2015-08-16 22:08:46.737 Test[2618:83764] Passenger B
  3. 2015-08-16 22:08:47.822 Test[2618:83764] Passenger E
  4. 2015-08-16 22:08:48.920 Test[2618:83764] Passenger F

condition

Until the end of the world can't separate us.

  1. [[[RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  2. [[RACSignal interval:1 onScheduler:[RACScheduler mainThreadScheduler]] subscribeNext:^(id x) {
  3. [subscriber sendNext:@ "Till the end of the world do us part" ];
  4. }];
  5. return nil;
  6. }] takeUntil:[RACSignal createSignal:^RACDisposable *(id<RACSubscriber> subscriber) {
  7. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  8. NSLog(@ "The end of the world is here" );
  9. [subscriber sendNext:@ "The end of the world is here" ];
  10. });
  11. return nil;
  12. }]] subscribeNext:^(id x) {
  13. NSLog(@ "%@" , x);
  14. }];
  1. 2015-08-16 22:17:22.648 Test[2766:88737] Only the end of the world can separate us
  2. 2015-08-16 22:17:23.648 Test[2766:88737] Only the end of the world can separate us
  3. 2015-08-16 22:17:24.645 Test[2766:88737] Only the end of the world can separate us
  4. 2015-08-16 22:17:25.648 Test[2766:88737] Only the end of the world can separate us
  5. 2015-08-16 22:17:26.644 Test[2766:88737] Only the end of the world can separate us
  6. 2015-08-16 22:17:26.645 Test[2766:88737] The end of the world has arrived

Finished

ReactiveCocoa is so elegant that once you use it, you can't stop. The above is just the tip of the iceberg. I hope I can arouse your interest.

<<:  Sorry, I don't like programming, I like creating

>>:  Deep interaction between UIWebView and JS

Recommend

In addition to Android and iOS, there is also an "unknown OS" that is rising

[[128637]] We always think that in the near futur...

3 ways to increase user traffic!

User growth has always been a key to business ope...

How to do KOL marketing promotion? 4000 words of dry goods presented

With the rise of short video platforms such as Ti...

Do you understand these permissions in iOS development?

Preface App development should avoid the problem ...

What does iOS 8 mean for app design?

Although the interaction design of iOS 8 is simil...

3 “Antidotes” for “Flow Anxiety”

Nowadays, those who work in marketing suffer from...

How to operate and promote WeChat public accounts

Whether it is a personal account or a corporate a...

Four channels for APP to recall users: EDM, Push, SMS, and public account

The author of this article will share with you ho...

Online and offline framework for second-hand car live broadcast room!

In the traditional search for used car sources, u...

How to make a product go viral as soon as it is promoted?

We have all been deceived by Lei Jun... A pig sta...

How to create a travel-related TikTok account from 0 to 1?

1. Industry Background As we all know, Douyin is ...