Tagged Questions
0
votes
0answers
69 views
UIPickerView Selected Row Label Color
I've made a custom UIPickerView but I'd like the UILabel to change color when scrolled into the selected row like this;
Any ideas?
Edit:
What I'd like to do is change the color of the UILabel ...
0
votes
2answers
64 views
display pickerview along with action sheet
I have a textfield. once I tap on that I want a UIPickerView to pop out and select an item from the UIPickerView and after once I am done with the selection I want to confirm the selection by tapping ...
-1
votes
1answer
32 views
Adding Object to NIB File and Use It As Delegate for UIPickerView [closed]
I'm developing a simple program for iOS. I want Added to Object to NIB File As Delegate and Datasource of UIPickerView which is used for display years. When I use system like these screenshots:
...
0
votes
0answers
31 views
Pre-Select UIPickerView based on previous string in Xcode
I have the following code that populates a UIPickerView with the string value that was previously selected stored in the variable "preValue."
NSUInteger currentIndex = [arrayColour ...
0
votes
2answers
59 views
UIPickerView data fron NSDictionary
I have date from web service like this:
{
"idlife_stage_question" = 43;//..basically this should be key
"life_stage_idlife_stage" = 1;
"profile_idprofile" = 0;
...
0
votes
1answer
30 views
Pre-Select UIPickerView in xcode
I have a UIPickerView that is created by a for loop. How would I pre-select an option?
arrayColour = [[NSMutableArray alloc] init];
for (int i = 0; i < [substrings count]; i++)
{
...
0
votes
1answer
20 views
Limiting the visible dates in UIDatePicker
Is there a way to limit the date range in UIDatePicker? I'm aware of the maximumdate and minimumdate properties but I'd like to limit the minimum year visible to 2010. I don't want the user to be able ...
0
votes
1answer
50 views
Insert element at NSMutableArray's end
I am loading an array from a web service and displaying them in picker and all works fine. My array contains random number of questions for every category of questions. Now what i want is that i wanna ...
0
votes
0answers
48 views
Xcode - Is it possible to retain transformation on orientation change?
I have a custom viewPicker that I am doing a transform on to make it a little bigger in size. Is it possible to retain this transform after an orientation change? After orientation is set to landscape ...
1
vote
1answer
39 views
How Do we recall PickView's didSelectRow after choosing a segment?
I have used a segmented control for the user to choose between two type of results after they select a row in the pickerview. However, when I choose a row in the pickerview then it shows the result of ...
1
vote
4answers
87 views
Comparing uipickerdate to current date
Here is the code that I have for my two datepickers which I need to compare them to the current date with an if condition or a switch.
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
...
0
votes
2answers
87 views
UIPickerView selecting row zero if PickerView not touched
an annoying thing about PickerView that I'm trying to eliminate, is that if the user has to move off row zero and back on again to select it. I'd like it so that if the user decides to select row ...
0
votes
3answers
39 views
How to select an Array with a specific title at first in UIPicker
Hello i want to show a list in a UIPicker, which is saved in arrays.
It works but i want to select a specific title as standard. it should be automatic selected.
example:
Array
...
0
votes
1answer
60 views
How to make an age calculator app with UIPickerView?
I'm trying to make an age calculator app with UIPickerView. I have the code to do the calculations, but how do I insert them to work with a UIPickerView?
The age calculation code is in an NSString
- ...
0
votes
1answer
18 views
UIPickerView with URL
I made a UIPickerView in xcode and I would like to add an "okay" or "go" button that will go to a specific website based on the selection on picker view. If any body know how to code this that would ...
1
vote
7answers
129 views
UIPickerView not displaying data
I've followed a couple youtube tutorials as well as advice on here but I can't seem to get my UIPickerView to display its data. I'm populating the picker using three arrays and I thought I've ...
0
votes
0answers
34 views
Changing UIPickerView size
I am building a UIPickerView and want to change the size. I saw where someone on here wrote that you can't change the size. I found however that you can indeed change it with the code:
...
0
votes
3answers
88 views
How to cretae five UIPickerView with tag? And how to give different name to every UIPickerView, in iPhone?
I have 2 UIPickerView right now and I want to add three more later.The code is below:
-(void)viewDidLoad{
Pos_x = 5;
Pos_y = 70;
for (i= 0; i<2; i++) {
myPickerView = [[UIPickerView alloc] ...
0
votes
1answer
131 views
How to get data in UIPickerView from Webservices
I am new to Iphone and I am working on a application where I have to use UIPickerView. I am able to populate the UIPickerView statically, but now I have to get data from WEBSERVICES and populate them ...
0
votes
2answers
108 views
UI Picker View Personalization
I am trying to find a way for a UIPicker to have the options of 3, 6, 12, 24, 36, 46, 72. Such that the user would be able to select the options from that set. But the UIPicker must come with a ...
0
votes
2answers
684 views
UIPickerView select first row programmatically
There are a lot of questions like this, but I believe my case is unique.
I have a pickerview that pops up when a textbox is clicked inside. The user selects their location in the pickerview, and ...
1
vote
3answers
144 views
JSON Arrays and Sorting
I have this json array which I have outlined below. I want to know how I could get all the strings under the "name" key only and place in a certain array to be sorted alphabetically by name and later ...
0
votes
1answer
67 views
UIPicker View Rotate Support
I have a universal iOS 6 Application that supports both landscape and portrait orientations.
I have a view that consists of a UIPickerView at the bottom and a label near the top.
On an iPad or iPad ...
1
vote
1answer
95 views
how to set data for UIPickerView?
I am tryign to add a PickerView - But I see a black screen... What am I doing wrong???
UIPickerView *myPickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(0, 0, 320, 320)];
[self.view ...
0
votes
1answer
131 views
displaying UIPickerView over current ViewController xcode
Here is my current problem. I have a UIViewController setup with its data and everything on a small sized view controller. What I am trying to see is if it is possible to connect that to a separate ...
3
votes
2answers
643 views
UIPickerView causing crash
Whenever I try to select the UIPickerView in my App it crashes.
I have implemented all the delegate methods but receive this error:
2013-01-15 13:57:56.176 tracker[16142:c07] *** Assertion failure ...
1
vote
2answers
277 views
Choose objects inside UITableView chosen by UIPickerView
This is a very broad question, not a specific question about a single problem. If you don't want to help with one of these, here is your warning!
I have a View with a pickerWheel. On this picker, I ...
0
votes
1answer
192 views
UIPickerView With Custom Dates
I cannot use a UIDatePicker. I just want to throw that out at the very beginning before all the commenters tell me to just use a UIDatePicker. I want to have a Picker Wheel that shows all the day of ...
0
votes
0answers
61 views
Customize UIPickerWheel Based on Today's Date
My app adds a quote each time the app is opened on a different date. So, you open today it shows Day 1 Quote, then if you open tomorrow, or in a week, it adds Day 2 Quote. For various reasons, I am ...
2
votes
1answer
298 views
Parsing JSON value on UIPickerview xcode
I have a pickerview with which I would want to display values using JSON parsing. I am aware some questions on the site already tackle parsing and pickerview but mine is slightly different in regards ...
0
votes
0answers
157 views
UIPickerview in Action Sheet Landscape
I am trying to implement a UIPickerView on a UIActionSheet in a landscape only view. The pickerview has a toolbar with a done button. I cannot get any response from the done button and cannot use ...
0
votes
4answers
259 views
How to hide a UIPickerView when the user make its choice
I've created a custom UIPickerView with the following code
UIPickerView *picker =[[UIPickerView alloc] initWithFrame:CGRectMake(139,50,161,30)];
picker.delegate=self;
...
0
votes
1answer
276 views
How to customize an UIPickerView in iPhone Xcode reducing its dimension?
I would like to reduce the height of a UIPickerView in my iPhone app, so that it shows only 4 rows on the right side of a label. It's a sign up view. I want just a little pickerview for the credit ...
0
votes
0answers
62 views
Picker goes black, then crashes app (sometimes)
I have a number of text fields that offer a selection of pre defined values in the form of a picker view. Occasionally, usually after a lot of text boxes have been filled in, the picker goes black, ...
0
votes
1answer
259 views
customize UIPickerView elements to start at top in xcode?
1.--> I need to customize a UIPickerview elements to start from the top.As of now we can see the picker elements starting from the middle like the one shown in figure(apple started from middle of ...
0
votes
0answers
48 views
Picker with many text fields
I'm using picker with many text fields, and I want to show "selected item in text field" in the picker automatically.
I tried to use selectRow, but it doesn't work. What should I do? Or where is the ...
-4
votes
3answers
263 views
How would I set up a UIPickerView? [closed]
I am setting up a UIPickerView to have choices like choice a, choice b, choice c and so on. I have tried to interpret the sample code from Apple but that seems very difficult to understand for a ...
0
votes
4answers
985 views
ToolBar at the top of UIPIckerView in xcode?
I need to add a toolbar with done button on the top of UIPickerView. I don't want to use actionSheet because I want the rest of the view to be active. I've gone for the following code:
- ...
0
votes
0answers
70 views
seek the avplayer video using uipicker
is this possible seek the avplayer(video) using uipickerview ?
By changing the row on increment ,video will move forward while on decrement video will move backward.
1
vote
1answer
599 views
Set UITextField's text as default value in UIPickerView in iPhone.?
I have some text in textField on view load.I want that particular text to be set as default value of UIPickerView ..The value in textField is one of the value of UIPickerView..How can I make it ...
0
votes
0answers
72 views
Is there any way to find UIPickerView component data using UISearchBar?
I'm trying to implement a UISearchbar which would search for the array data in UIPickerView. My components are connected. So if it could find out the numeric data in first component, rest of them ...
1
vote
1answer
124 views
UIPickerview in iPhone?
I m new to objective-C and I need to create a UIPickerView when a particular textfield is touched that would be populated with the items of NSMutableArray..I have implemented this code but couldnot ...
0
votes
1answer
84 views
UIPickerView with one object
I am using a UIPickerView and currently their is only a single object in it. How can I display that single object on label.
It has this weird property that when we use pickerView the data is not set ...
0
votes
2answers
288 views
Hide keyboard when selecting another UITextField w/ UIPickerView error
I'm trying to hide the keyboard when the user selects a UITextField. I currently have three text fields: two UIPickerView (controlled by the same picker) and a textinput field. When I click "return" ...
1
vote
1answer
198 views
Populating Component 1 of Picker view with respect to selection made in Component 0 of same Picker
I am very new o XCode. I was using Picker VIew and got stuck at one place.
I have a Picker View with two Components. And I have three arrays. Array, Array1, Array2.
Now what I want to accomplish is ...
1
vote
1answer
84 views
Using one pickerView to show different array data
I am new to XCode. I was trying to use one pickerView and in that i wanted to show three different array data at different time. Like if i click on the button the picker view shows up with an array of ...
0
votes
1answer
521 views
Popup UIPickerView
I know lots of people have asked same question, and I've tried lots of them, I don't know what part that I miss, I still can get it to work.
I have a 9*9 table that I want to display and change, ...
3
votes
1answer
407 views
How can i get UIPickerview to update UILabel automatically
I have a converter app, and i want it to update the label whenever im typing the numbers (that should be converted) into the text field. I want it to update automatically so i dont need to pick the ...
0
votes
1answer
183 views
Picker values are repeating in textfields for all rows in section?
I am using pickers for 2 textfields in custom cell. While selecting picker value for one field, it repeates for all rows in one section.I am using following code. I am setting picker for action of ...
0
votes
1answer
287 views
UIdatepicker showing weekdays
I would like to make a datepicker that shows weekdays, date and month.
I got a working datepicker showing month, date and year but I would really like it to show month, day, date
How is this ...




