Say I have a function like this:
-(void)activateDict:(NSNumber*)dictID{
}
Then I add a action for my button:
[aBtn addTarget:self action:@selector(activateDict) forControlEvents:UIControlEventTouchUpInside];
There is a parameter in the activateDict function, which is (NSNumber*)dictID, so when I add the action to button, how can I add the parameter to the function? like: action:@selector(activateDict:theDictID).