mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-01-12 22:51:50 +08:00
25 lines
500 B
Objective-C
25 lines
500 B
Objective-C
//
|
|
// RKPost.m
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 1/24/13.
|
|
// Copyright (c) 2013 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import "RKPost.h"
|
|
|
|
@implementation RKPost
|
|
|
|
@dynamic tags;
|
|
|
|
- (BOOL)validateTitle:(id *)ioValue error:(NSError **)outError {
|
|
// Don't allow blank titles
|
|
if ((*ioValue == nil) || ([[(NSString*)*ioValue stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] isEqualToString:@""])) {
|
|
return NO;
|
|
}
|
|
|
|
return YES;
|
|
}
|
|
|
|
@end
|