News.m 466 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //
  2. // News.m
  3. // jiaPei
  4. //
  5. // Created by apple on 15/11/10.
  6. // Copyright (c) 2015年 JCZ. All rights reserved.
  7. //
  8. #import "News.h"
  9. @implementation News
  10. +(id)newsWithDict:(NSDictionary*)dict{
  11. News* n = [[News alloc] init];
  12. n.addTime = dict[@"addTime"];
  13. n.author = dict[@"author"];
  14. n._id = dict[@"id"];
  15. n.source = dict[@"source"];
  16. n.title = dict[@"title"];
  17. n.type = dict[@"type"];
  18. return n;
  19. }
  20. @end