123456789101112131415161718192021222324 |
- //
- // NSDictionary+CL.m
- // CLWeeklyCalendarView
- //
- // Created by Caesar on 10/12/2014.
- // Copyright (c) 2014 Caesar. All rights reserved.
- //
- #import "NSDictionary+CL.h"
- @implementation NSDictionary (CL)
- - (id)objectForKeyWithNil:(id)aKey {
- if(!self) return nil;
- id object = [self objectForKey:aKey];
- if (object == [NSNull null]) {
- return nil;
- }
- return object;
- }
- @end
- // 版权属于原作者
- // http://code4app.com (cn) http://code4app.net (en)
- // 发布代码于最专业的源码分享网站: Code4App.com
|