i create the view with
UIView mainView = [[UIView alloc] initWithFrame:displayRect];
in the viewController programmically.
so i have no IBActions or IBOutlets.
i create the buttons with
UIBarButtonItem *btn1 = [[UIBarButtonItem alloc] initWithTitle:@"Load" style:UIBarButtonItemStyleBordered target:self action:@selector(btn1Func

];
but the target should not be the UIView itself, it should be the 'creator' here the viewController.