0
votes
3answers
61 views

Pickerview value on uitabelview cell

In my application i have implement the functionality as follows,Tabelview cell contains two button on click it shows the picker view,When i select picker value its not reflecting on uitabelview ...
1
vote
3answers
118 views

uipickerview selection on tableviewcell detailtextlabel

As I wrote in the title, I am trying to write down the value selected on a pickerview (populated by an array) to the detailTextLabel of the cell I clicked to bring up the pickerview. (The pickerview ...
0
votes
1answer
195 views

UITableView Rows selection with UIPicker Option

I have a tableview with 5 rows, when I select a row it opens a UIPickerView in the next page to select options,the same things happen with 5 rows.Now I want ,The Pickervalue, It should be reflected on ...
-1
votes
2answers
59 views

iOS - which control is best to pick values - to be launched from UITableView

I have a dialog requirement. I need a small list of static values that user must pick, and discard the dialog. Now, this dialog must be launched from a UITableView - upon selection of specific cell. ...
0
votes
1answer
418 views

how to add a uipickerview as a sub view in a uitableviewcell using monotouch?

I have implemented a grid-looking structure (say 5 rows and 10 columns) for an iPad. I have done this by adding many UITextFileds(by creating Frames) as subviews(each cell being editable, just like ...
0
votes
0answers
145 views

UIPickerView inside UITableCellView: current row of the table (parent cell)?

I have a UITableView, and some of the UITableViewCells contain UIPickerView. The is a NSArray *dataPool, and every cell gets it's data from cellData = [dataPool objectAtIndex:indexPath.row]. If the ...
0
votes
1answer
603 views

UIPickerViewDelegate Methods Not Getting Called

I have created a custom view that contains a UIPickerView and a UITableViewCell to display the contents currently selected in the picker. My PickerViewController is set as both the delegate and ...
0
votes
1answer
242 views

How to select cell in UITableView that in UIPickerView

I have added the UITableView as subview of UIPickerViewRow in this way: - (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component { return 1; } ...
0
votes
1answer
585 views

UITableView inside UIView with first cell static

I have an tableview inside a view because I have a uipicker at the bottom of the screen. Now I want to change the first row inside the tableview influenced by uipicker. So I need a static first row ...
1
vote
2answers
2k views

Adding UIPickerView to a UITableViewCell

i want to add a UIPickerView to a UITableViewCell. Right now i am just getting a black window.Can some one also explain me the concept of subclassing UI objects to a cell ie:when do we make our cell ...
0
votes
1answer
73 views

Accessing main view from button in Custom TableViewCell

I have a button in a table view cell which, when pressed brings up a UIPickerView. The only problem that I'm facing is finding out how to access the main view from inside the cell. Any ideas?
0
votes
2answers
516 views

How insert value in text field of custom cell from pickerview when user click on textfield?

I have a table view in which i am adding a custom cell. In custom cell i have a text field. In that text field i want to insert value from picker view. Picker view will open when user click on text ...
0
votes
1answer
127 views

Pick month from a list in UITableViewCell?

What's the best way for me to allow the user to pick a month from a UITableViewCell? UIPickerView requires the height to be very large which makes it look ugly..What are some other options? I don't ...
0
votes
3answers
1k views

Setting UIPickerView selection to UITextField inside a UITableViewCell

I have a UITextField in a custom tableview cell. On tapping the textfield area I display a popover which contains a pickerview. I need to set the selection from the pickerview to the textfield's text. ...
0
votes
1answer
346 views

UITableviewCell with UITextField switching between uikeyboard and uidatepickerview

i have a table with 3 types of rows. First type contains a textfield for alphanumeric where you should write something in. Second type should contain a textfield with a number. third type contains a ...
0
votes
1answer
1k views

UIDeviceRGBColor isEqualToString:]: unrecognized selector

Can someone tell me what exactly is that about? I have table and inside the tableCell I have a pickerview and some textfields in other cells. When i'm scrolling the table up and down 8-10 times app ...
1
vote
1answer
655 views

UIPickerView + TableViewCell + delegates and datasource

I have Table view Controller and separate class which handles for me tableviewcell. Inside the tableview cell I have pickerview. How to implement delegate and datasource for pickerview which is in ...
1
vote
1answer
470 views

How can I avoid a crash when VoiceOver encounters UIPickerView as subview of UITableViewCell contentView?

In my app I have a UIPickerView as a subview of a table cell's contentView. I disable scrolling in the table view, and the arrangement works fine under normal circumstances. However, I've found that ...
1
vote
1answer
1k views

uipickerviews inside table cell not selectable

I have a table cell for which I set its contentView to a custom view that contains one label and a number of uipickerviews. My problem is that only the first picker view is selectable, while all the ...