In my application i am using core-data to store information and saving these data to the server using web-connectivity i have to use MySql.
Basically what i want to do is to keep track of number of NSManagedObject already created and Whenever i am adding new NSManagedObject, based on that counting it will assign the class a Int_value which will act as primary_key in MySql.
For examaple, there are already 10 NSManagedobjects, and when i will add new one it will assign it "11" as primary_key. these value will have to be increasing because there is no deleting of NSManagedObject. From my approach its about static member in applicationDelegate whose initial value can be any integer but should be incremented by one(like auto-increment) everytime new NSManagedObject is created and also it should be persistent. I am not clear how to do this, please give me suggestions. Thanks in advance.
| ||||
|
feedback
|
|
Create a subclass and implement the -awakeFromInsert and calculate the new value in there and set the property. UpdateThere is a cleaner way to perform this. Consider this code:
In this example we are fetching the one row which is sorted to be the largest index and telling Core Data to only populate the single property. This makes it the cheapest fetch possible. As for validation, that is more useful for user entered values as opposed to things you are doing internally. Therefore I would recommend not adding any validation to this property. | |||||||||||||
feedback
|
|
In NSSortDescriptor set ascending "NO" and it will work 100%.
| |||
feedback
|
|
I think there is also a corrigendum or typo error. put NSAssert2 in place of NSAssert1 and it will work all-right. | |||
|
feedback
|
|
Zarra's answer super useful, although I did change sort order of the indexSort descriptor to descending (that's right, right?) and for some reason NSAssert1 was giving too many args error so I nixed the userInfo dictionary (sorry to see it go!) and it seems to be working. Interesting that I guess you don't have to set 'includesPendingChanges' to yes a la Apple's docs: | |||
|
feedback
|