Tagged Questions
0
votes
1answer
81 views
Picker not populating in iOS6 but populating in iOS 5.1
Have an odd thing happening with an app I'm on.
Firstly, the code and particular action within the app is fine when running on the iOS 5.1 simulator. When I run the same app on iOS 6.0 simulator, the ...
1
vote
0answers
71 views
Core Data and UIPickerView - Default Value
I am working on an iPhone/iPad App that is using core data. I have a Table (Entity) that wants the user to select from another Table (relationship is setup in the model). I have worked through ...
2
votes
2answers
109 views
NSFetchRequest with distinct records and UIPickerView
I am new to iOS programming and I am trying to populate a UIPickerView with results from a fetch. I was able to do it. Since there are duplicates, I decided to use the following code to get distinct ...
1
vote
1answer
79 views
Tableview with picker view and persistence
I´m struggling a lot to find a good solution, and searched a lot also, but i can´t find anything similar with what i want, so i hope anyone can help me:
I have two tableviews, in the first one i ...
0
votes
2answers
186 views
iOS sort CoreData Result - kind of parent-child relationship
I'm a bit stuck here with a simple question:
I have objects (coming via rest) stored locally with coredata.
Within coredata entitie i have the following attributes:
catID (int16)
parentID (int16)
...
0
votes
1answer
561 views
Using UIPickerView with CoreData
Could anyone tell me how to get data from core data entity and then use it in PickerView
thanks!
0
votes
1answer
269 views
Passing Managed Object Data Through didSelectRow PickerView
I'm a bit lost on how to pass my fetched managed object data through a didSelectRow PickerView action.
On the previous view, I passed the CalcInfo object like this:
CalcInfo *calc = (CalcInfo ...
0
votes
2answers
272 views
UIPicker and Text Field
I have the same kind of question as this person
How to Sync selected row of UIPicker with previously entered data
I want the picker to load with info from a text field in another tab. I'll explain.
...
0
votes
1answer
225 views
I want to extend the CoreDataBooks example with a UIPickerView
I am trying to add in a third method into the editting view controller in this example; a simple pickerview for a field. Currently, my pickerview has 6 items that I load into it. When I run it, it ...
1
vote
1answer
298 views
Issue with UIPickerView's NumberOfRowsInComponent properly registering the int 16 value I am returning from core data
I have a Book data entity that has as an attribute an int 16 type value called numBooks. Due to the way everything is setup, I am actually grabbing the number I need inside titleForRow, and saving the ...
0
votes
1answer
400 views
How do you retrieve the latest object from Core Data?
I'm writing an application that uses a UIPickerView and is storing each change to the pickers in core data (the name of the app is Wizard Blood in the iTunes store). I've had some success so far in ...
0
votes
1answer
478 views
How do you save CoreData with UIPickerView and then load CoreData with UITableView?
I have a multiview application using a tab bar to switch views. One is a pickerview while the other two are a table view and a view with 4 text fields (and one other table view that just contains ...
0
votes
1answer
311 views
Using a UIPickerView to make a CoreData Relationship
Okay, so I have a fairly simple application set up.
I have two different CoreData Entities, Games and Platforms, each have one attribute: name, and they have a one-to-many relationship between them.
...
0
votes
1answer
981 views
Does anyone know how to populate the picker controller with core data
I'm trying to populate the UIPicker with Core Data instead of an array but can't for the life of me figure out how to do it... Please can someone point me in the right direction as to what I can do ...
1
vote
1answer
2k views
Load CoreData objects' string property into UIPickerView
Currently I have an entity named "Events" in a CoreData app. "Events" has one string property named "eventName".
In the -(void)viewDidLoad I am trying to Fetch all the "Events" objects and load ...
3
votes
1answer
2k views
iPhone Core Data objects added to NSMutableArray
I am trying to have a bunch of Core Data objects (NSStrings) be added to an NSMutableArray so that I pickerView can use the strings as its data values.
Currently I am able to save strings from a ...
1
vote
1answer
642 views
Core Data - Getting Unique Rows
I'm working on an iPhone app that uses Core Data. I have only one entity called Books, and that entity has the attributes Title, Author, ISBN, Description and Shelf.
I'm working on the book editing ...