mirror of
https://github.com/zhigang1992/shadowsocks-iOS.git
synced 2026-06-11 16:49:42 +08:00
22 lines
387 B
Objective-C
22 lines
387 B
Objective-C
//
|
|
// BookmarkEditViewController.h
|
|
// OnionBrowser
|
|
//
|
|
// Created by Mike Tigas on 9/7/12.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "Bookmark.h"
|
|
|
|
@interface BookmarkEditViewController : UITableViewController <UITextFieldDelegate> {
|
|
Bookmark *bookmark;
|
|
}
|
|
|
|
-(id)initWithBookmark:(Bookmark*)bookmarkToEdit;
|
|
@property (nonatomic, retain) Bookmark *bookmark;
|
|
|
|
|
|
-(void)saveAndGoBack;
|
|
@end
|