if i have a tag of text field then how can i pick the value of textfield in iPhone sdk
you should be fine with something like (assuming that the TextField is a self.view's subview):
NSString *text = [(UITextField *)[self.view viewWithTag:THE_TAG] text];