Adds string form field cell for use in table views to edit a string property.

This commit is contained in:
2020-09-12 00:17:41 -07:00
parent e3384538a5
commit a8c88feb1f
6 changed files with 101 additions and 1 deletions

View File

@@ -8,10 +8,11 @@
#import <UIKit/UIKit.h>
#import "Monster.h"
#import "EditableShortStringTableViewCell.h"
NS_ASSUME_NONNULL_BEGIN
@interface EditMonsterViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>
@interface EditMonsterViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, EditableShortStringDelegate>
@property Monster* originalMonster;
@property (weak, nonatomic) IBOutlet UITableView *monsterTableView;