1 Star 8 Fork 0

Wrcj_12138/RSSKit

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

搜索帮助