mirror of
https://github.com/zhigang1992/shadowsocks-iOS.git
synced 2026-04-06 18:19:50 +08:00
25 lines
339 B
Objective-C
25 lines
339 B
Objective-C
//
|
|
// SWBTab.m
|
|
// SWBuaWeb
|
|
//
|
|
// Created by clowwindy on 11-6-12.
|
|
// Copyright 2011年 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "SWBTab.h"
|
|
|
|
|
|
@implementation SWBTab
|
|
|
|
@synthesize title, tag;
|
|
|
|
- (id)initWithTag:(NSInteger)aTag {
|
|
self = [super init];
|
|
if (self) {
|
|
self->tag = aTag;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|