self.subscription = [[[RACObserve(photoModel, fullsizedData) filter:^BOOL(id value) {
return value != nil;
}]map:^id(id value) {
return [NSNumber numberWithFloat:1.0f];
} ]setKeyPath:@keypath(self.imageView.layer,borderWidth)onObject:self.imageView];
エラーログは次のとおりです。
Terminating app due to uncaught exception 'NSUnknownKeyException',
reason: '[<UIImageView 0x7b1a8510> setValue:forUndefinedKey:]:
this class is not key value coding-compliant for the key cornerRadius.
そして、タイプがfloat、intなどの値に反応する別の方法があれば、それを受け入れると思います.