objective c

@interfaceSettingController ()
{
    NSIndexPath *_tempIndexPath;
    UIButton *_btnBack;
}
@property (weak,nonatomic) IBOutletUITableView *tableView;

@end

@implementation SettingController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
        self.navigationItem.hidesBackButton = YES;
        self.viewName = @"设置页面";
    }
    returnself;
}

 

猜你喜欢

转载自quding0308.iteye.com/blog/1882728