A UITextField object is a control that displays editable text and sends an action message to a target object when the user presses the return button. You typically use this class to gather small amounts of text from the user and perform some immediate action, such as a search operation, based on ...
0
votes
1answer
30 views
How to assign one item to multiple elements
In objective-c I have an app that when you open one of the textfield it scrolls to that field though I can only manage to do that with one element as when I try and combine multiple into one it ...
0
votes
0answers
3 views
How reading contents of rtf file into UITextView in iOS6
In my project I´m trying to set up some kind of Info system. I´m providing the info as rtf files fully formatted.
This is what I have so far:
NSString *filePath = [[[NSBundle mainBundle] ...
0
votes
1answer
42 views
How to remove parentheses from array element
I have an iOS app that uses Core Data to persist information retrieved from a server. I use a basic fetch request to grab all the managedObjects for a given entity. The managedObjects are put into ...
0
votes
1answer
25 views
iOS - UIScroll on Keyboard popup to textfield on when textfield is inside subview
I used code to make the screen scroll when the keyboard is covering up a textfield.
I have a list of textfields, and i started putting each inside of its own uiview for styling and organizational ...
0
votes
1answer
36 views
Automatically scrolling down to next UITextField
In my view controller, I have 5 UITextField that each take it different data wether from the keyboard or from a UIPicker. All of my different elements are in a subclass of a scrollview called ...
0
votes
1answer
20 views
Adding a Prev and Next button to the Accessory view of my UIPicker?
In my view controller I have 5 Text Fields, 4 become first responder with keyboard and one with the UIPicker, they are all tagged +1 (0,1,2...)
It just so happens that the textfield that becomes ...
0
votes
0answers
25 views
UITextField ResignFirstResponder crash on UIScrollView
so my problem is this, i have an UIScrollView in a ViewController and i have added a childViewController to this ViewController and added the childViewController view to the UIScrollView (managed by ...
0
votes
0answers
11 views
How to get UITextField scrolled while editing?
I have five UITextFields on UIScrollView.
When I tap to one of this the field move up and I can see it above keyboard. But when I start editing all and change it by tapping on "Next" button scroll ...
0
votes
2answers
35 views
Add UIView when keyboard is shown without being dimmed out
This question is a bit difficult to explain. I have a textfield on top (where the navigation bar is usually is) and when I start editing text, the keyboard shows and auto dims the background. I want ...
0
votes
2answers
20 views
Setting the title of current column in UITextField from UIPickerView?
I have a UIPickerView that is being automatically loaded in loaded when a user touches the UITextField, at the end of selection the user can close the UIPicker by touching the "close" that I have ...
0
votes
1answer
28 views
UIView animationWithDuration not working second when called twice
I have created a category on UITextField which allows to animate between red and white color as shown below:
@implementation UITextField (Additions)
-(void) flash
{
[UIView ...
1
vote
1answer
20 views
Dismissing the UIPicker after user is done using it in a UITextField?
I have a UIPicker that would like to be shown only when a user selects a specific UITextfield. The problem I am having is this:
I have added a working picker called myPicker and a text field called ...
0
votes
3answers
23 views
Receiving a UILabel value from a UITextField programatically
I have a UIView that is supposed to act like a questionnaire form. In this view I am programatically creating a dynamic amount of UILabels that act as the questions and UITextFields that are where the ...
0
votes
2answers
22 views
How can I get a custom UITableViewCell from a TableView using cellForRowAtIndexPath?
I have a table in one of my views, I want to use the table to allow the user to input data. To do this I created a custom UITableViewCell which worked perfectly.
My problem occurred when trying to ...
0
votes
0answers
17 views
How set up borders of UITextField?
I have a big UITextField with opaque borders. And when I writing a lot, my text comes behind the border and don't transfer. How can I set borders and transfers?
Thank you a lot for help.