blob: 3e59f63ce03a96c61c6853935fb0619c9f0ad843 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
//
// SourcesEditViewController.h
// PicCast
//
// Created by Matthew Handler on 4/20/11.
// Copyright 2011 Earl Industries. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol SourcesEditViewControllerDelegate;
@interface SourcesEditViewController : UIViewController <UITableViewDataSource> {
id <SourcesEditViewControllerDelegate> delegate;
}
@property (nonatomic, assign) id <SourcesEditViewControllerDelegate> delegate;
@property (nonatomic, retain) IBOutlet UITableView *tableView;
- (IBAction)done:(id)sender;
@end
@protocol SourcesEditViewControllerDelegate
- (void)sourcesEditViewControllerDelegateDidFinish:(SourcesEditViewController *)controller;
@end
|