objective c - how to assign an integer data type array values to a UITextField in iphone -


how assign integer data type array values uitextfield because have integer array , want display contents in textfield

try this,

nsstring *intergerstring = [nsstring stringwithformat:@"%d",intergervalue]; txtfield.text = intergerstring; 

Comments

Popular posts from this blog

haskell - Using filter on an item in a list? -

c# - When does PreApplicationStartMethod actually get triggered to run? -

c# - Binding attached property to IEnumerable -