The tag value is an Integer:
UIButton *button=[UIButton buttonWithType:UIButtonTypeCustom]; [button setTitle:addressField forState:UIControlStateNormal]; [bu
as far as i know tags are always type int.
youll need to convert it manually like:
NSString *temp : [[NSString alloc]init]; if(sender.tag == x){ temp = @"some string"; )
and make cases for the different tags.
please correct me if im wrong here :)