FunctionalReactiveProgrammingOniOS
FunctionalReactiveProgrammingOniOS copied to clipboard
Functional reactive programming introduction using ReactiveCocoa 中文译本
Results
3
FunctionalReactiveProgrammingOniOS issues
Sort by
recently updated
recently updated
newest added
``` + (void)configurePhotoModel:(FRPPhotoModel *)photomodel withDictionary:(NSDictionary *)dictionary{ //Basic details fetched with the first, basic request photomodel.photoname = dictionary[@"name"]; photomodel.identifier = dictionary[@"id"]; photomodel.photographerName = dictionary[@"user"][@"username"]; photomodel.rating = dictionary[@"rating"]; photomodel.thumbnailURL = [self urlForImageSize:3...