代码拉取完成,页面将自动刷新
//
// 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
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。