add page manager

This commit is contained in:
clowwindy
2013-02-17 08:17:43 +08:00
parent 4aa89955fc
commit cb0e35a8e5
23 changed files with 4285 additions and 69 deletions

21
ShadowWeb/SWBPage.m Normal file
View File

@@ -0,0 +1,21 @@
//
// AQPage.m
// AquaWeb
//
// Created by clowwindy on 11-6-18.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
#import "SWBPage.h"
@implementation SWBPage
@synthesize title;
@synthesize url;
@synthesize selected;
@synthesize tag;
- (BOOL)isSelected {
return [self.selected boolValue];
}
@end