i tried some codes, i hope its right.
in ViewControllers.h file:
#import "ScrollButtonView.h"
@interface MainViewController : UIViewController < ScrollButtonViewDelegate >
// setting property ...
in ViewControllers.m file
// setting @synthesize ..
// also dealloc
in viewdidload:
Code:
subView=[[ScrollButtonView alloc] initWithFrame:CGRectMake(0, 0, 320, 50)];
[subView setDelegate:self];
[self.view addSubview:subView];
it works, thanks...