I want to send integer data through textfield to the json server and whatever calculated result will be provide server that result i want to display in my label field.
How is it possible? Pls, provide me any code how will i send integer data to the server ? And how will i parse that result by use of json parsing ? And how will I display that result in my label field?
I want to send integer data through textfield to the json server and whatever
Share
You will have to convert int into string first. You can convert int into string as
NSSting *str = [NSString stringwithFormat:@"%d",yourint];okay than These are the links which can be helpful to you.
tutorial
same post