I'm planning a messaging app. I have in mind a message model class. In Phase 2
I plan to be able to send messages. (Phase 1 is just loading and saving from/to
disk.) I plan on using Core Data to handle the combo draft folder / outbox /
sent folder, with a CD Managed object class for the messages
> On Apr 28, 2016, at 10:56 AM, Daryle Walker wrote:
>
> Can I use a CD model object without managed contexts nor persistent stores?
I’m pretty sure you can’t, but if you’re not doing anything fancy in your
modeling, the classes will just be pretty vanilla classes with some properties.
So you
I'm getting the following message in the console:
Attempting to load the view of a view controller while it is
deallocating is not allowed and may result in undefined behavior
()
Thing is, I get it when handling a universal link (a link tapped outside my
app, but which is sent to my ap
> On 2016 Apr 28, at 13:23, Jens Alfke wrote:
>
> So you can start out declaring the model classes like
> @interface Message : NSObject
Just to clarify, the reason why you must do this and not inherit from
NSManagedObject is because the designated initializer of NSManagedObject is
-ini
I have not tried this myself but maybe this is what you are looking for:
UIAdaptivePresentationControllerDelegate
presentationController:viewControllerForAdaptivePresentationStyle:
Regards,
Puneet
On Wednesday, April 27, 2016, Rick Mann wrote:
> I have a custom UI view controller presentatio