| bio | website | DeGroote.com/dave/resume |
|---|---|---|
| location | State College, PA | |
| age | ||
| visits | member for | 1 year, 6 months |
| seen | May 12 at 4:12 | |
| stats | profile views | 39 |
|
Apr 15 |
awarded | Nice Answer |
|
Mar 28 |
awarded | Necromancer |
|
Mar 5 |
awarded | Caucus |
|
Dec 16 |
comment |
EKEventstore and unique calendar identifier I've found calendarIdentifier to be unique to the device, but not between devices. I needed something to use across all devices via iCloud and this didn't work. It seemed to be the same for some sources (Exchange and iCloud), but not for Gmail. So, I'm stuck matching via stored name and source and asking the user when a match can't be found. |
|
Dec 16 |
comment |
Bug in migration iOS5 to iOS6 “This store was previously associated with a different iCloud account” I just got this error during development. For me it wasn't a migration issue, the store matched and didn't need migration. I don't know what caused it, but deleting the app and it's data fixed the problem and allowed me to continue development (iCloud resynced and I didn't loose any data). I'm hoping it's some kind of development only corruption. |
|
Dec 14 |
comment |
-didSelectRowAtIndexPath: not being called I keep running into this because I have scenes that are always in edit mode and I keep forgetting to change the default from "No Selection During Editing". |
|
Nov 20 |
answered | iOS: SharedCoreData Example Code (iCloud + CoreData) | How are changes merged |
|
Nov 19 |
comment |
How do I create unique IDs for objects across devices As of iOS 6 you can use: NSString *UUID = [[NSUUID UUID] UUIDString]; |
|
Nov 19 |
comment |
How can I replace uniqueIdentifier with CFUUIDCreate? As of iOS 6 you can use: NSString *UUID = [[NSUUID UUID] UUIDString]; |
|
Nov 19 |
comment |
How to create a GUID/UUID using the iPhone SDK As of iOS 6 you can use: NSString *UUID = [[NSUUID UUID] UUIDString]; |
|
Nov 14 |
awarded | Necromancer |
|
Nov 13 |
accepted | Can the model a Core Data model is based on be displayed or changed? |
|
Nov 13 |
comment |
Can the model a Core Data model is based on be displayed or changed? Wow, I was about to disagree with you that each version is a complete structure, but it occurred to me that I might have a misconception about what "Add Model Version..." does. I thought that the currently selected version was copied as the new version and the "Based on model" was used later, either when compiling .mom files, or during migration. I just did some testing and it seems that it's actually the "Based on model" version that is copied and the currently selected model is only used to position the new version in the list. That explains a lot! |
|
Nov 11 |
revised |
Can the model a Core Data model is based on be displayed or changed? minor fixes |
|
Nov 11 |
comment |
Can the model a Core Data model is based on be displayed or changed? Thanks, but I do understand all this. I've been creating new versions of my model for a long time. At one point I had 50 some versions. Most were from various levels of testing and I didn't remember what model was based on what previous version. I needed to delete all the unneeded versions, and rename them to better names. The question isn't how to look at all the models, it's how to tell what version a model is based on and where that information is stored. |
|
Nov 11 |
revised |
Can the model a Core Data model is based on be displayed or changed? added 10 characters in body |
|
Nov 11 |
revised |
Can the model a Core Data model is based on be displayed or changed? Rewrite |
|
Nov 11 |
answered | How do I make a UITableViewCell appear disabled? |
|
Nov 7 |
awarded | Tumbleweed |
|
Nov 3 |
comment |
Using mergedModelFromBundles: and versioning (CoreData) Actually, there is a need since Xcode doesn't remove old resource files (see my comment on @Marcus answer). |