1 Star 0 Fork 0

Wrcj_12138 / RSSKit

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
RSSFeed.m 1.12 KB
AI 代码解读
一键复制 编辑 原始数据 按行查看 历史
H2CO3 提交于 2011-12-28 09:01 . small patches
//
// RSSFeed.m
// RSSKit
//
// Created by Árpád Goretity on 01/11/2011.
// Licensed under a CreativeCommons Attribution 3.0 Unported License
//
#import "RSSFeed.h"
@implementation RSSFeed
@synthesize type;
@synthesize title;
@synthesize description;
@synthesize url;
@synthesize date;
@synthesize author;
@synthesize articles;
@synthesize uid;
@synthesize language;
@synthesize copyright;
@synthesize categories;
@synthesize generator;
@synthesize validTime;
@synthesize iconUrl;
@synthesize cloudService;
- (id) init {
self = [super init];
NSMutableArray *theArticles = [[NSMutableArray alloc] init];
self.articles = theArticles;
[theArticles release];
NSMutableArray *theCategories = [[NSMutableArray alloc] init];
self.categories = theCategories;
[theCategories release];
return self;
}
- (void) dealloc {
self.title = NULL;
self.description = NULL;
self.url = NULL;
self.date = NULL;
self.author = NULL;
self.articles = NULL;
self.uid = NULL;
self.language = NULL;
self.copyright = NULL;
self.categories = NULL;
self.generator = NULL;
self.iconUrl = NULL;
self.cloudService = NULL;
[super dealloc];
}
@end
Objective-C
1
https://gitee.com/geekcj/RSSKit.git
git@gitee.com:geekcj/RSSKit.git
geekcj
RSSKit
RSSKit
master

搜索帮助