在下面方法中獲取發送按鈕的 Tag/Name/ID
-(void)imagePickerController:(UIImagePickerController*)picker didFinishPickingMediaWithInfo:(NSDictionary*)info
{
// I Want to get the sender button reference here
}
根據tag取控件,使用
id control = [self.view viewWithTag:yourTag];