On 24 Apr 2013, at 04:16, Steve Mills wrote:
> On Apr 23, 2013, at 17:39:17, Mike Abdullah
> wrote:
>
>> -hasUnautosavedChanges continues to be applicable to all (auto)saving models.
>>
>> I caution against overriding it since:
>>
>> A) Your override is likely a lie to the system when you ge
I'd like my IKCameraDeviceView to report downloaded images in memory-mode, but
despite the fact that I have told it to use
IKCameraDeviceViewTransferModeMemoryBased and it agrees that it heard me:
(gdb)p (int) [cameraDeviceView mode]
$1 = 1
... it still passes the image as a URL to its delegate
> I seem to have a loose end though -- when I examine the UIWebView's
> scrollView property, it initially has a non-nil delegate. I don't know if I
> should "interpose" as delegate and after taking my snapshot, call the
> original delegate, or only set myself as a delegate instead of the origin
I agree with all of Mike's warnings, and continue to be amazed that Steve is
able to sidestep the whole minefield of
-autosaveWithImplicitCancellability:completionHandler: hangs in which so many
of us have lost limbs.
In my Lion-autosaved app, I override
-autosaveWithImplicitCancellability:co
Could it be because we're not using Cocoa's undo manager or because I have
preservesVersions and autosavesInPlace turned off?
--
Steve Mills
office: 952-818-3871
home: 952-401-6255
cell: 612-803-6157
On Apr 24, 2013, at 09:25:25, Jerry Krinock wrote:
> I agree with all of Mike's warnings, and
On 24 Apr 2013, at 15:58, Steve Mills wrote:
> Could it be because we're not using Cocoa's undo manager or because I have
> preservesVersions and autosavesInPlace turned off?
You do?! That takes us back to an earlier point then, surely – you're using a
custom autosave system?
__
On Apr 24, 2013, at 10:00:13, Mike Abdullah wrote:
> On 24 Apr 2013, at 15:58, Steve Mills wrote:
>
>> Could it be because we're not using Cocoa's undo manager or because I have
>> preservesVersions and autosavesInPlace turned off?
>
> You do?! That takes us back to an earlier point then, sur
On Apr 18, 2013, at 12:42 PM, Seth Willits wrote:
> I have an application with a single window and that window's -restorable
> property is NO (in the xib). If I force quit that application or otherwise
> cause it to crash, when it is launched again the app asks me if I want to
> restore its win
On 24 Apr 2013, at 16:12, Steve Mills wrote:
> On Apr 24, 2013, at 10:00:13, Mike Abdullah wrote:
>
>> On 24 Apr 2013, at 15:58, Steve Mills wrote:
>>
>>> Could it be because we're not using Cocoa's undo manager or because I have
>>> preservesVersions and autosavesInPlace turned off?
>>
>>
On Apr 24, 2013, at 12:34:41, Mike Abdullah
wrote:
> It doesn't surprise me, so much as it confuses me! I thought you'd turned on
> +autosavesInPlace and were trying to get it not to autosave at certain times.
> But now you're saying you're not using it.
>
> Are you using the old 10.4-based a
On 2013 Apr 23, at 14:41, Peng Gu wrote:
Peng, I don't quite understand all of what you're doing there, but from this
remark,
> The code above works, but core data won't save the attributes changes
> unless I type some words in the Textview. Calling moc to commit editting
> doesn't save the ch
On 24 Apr 2013, at 19:00, Steve Mills wrote:
> On Apr 24, 2013, at 12:34:41, Mike Abdullah
> wrote:
>
>> It doesn't surprise me, so much as it confuses me! I thought you'd turned on
>> +autosavesInPlace and were trying to get it not to autosave at certain
>> times. But now you're saying you'
Mutating an attributed string doesn't count as "key-value coding", even if the
string itself is exposed as a KVC-compliant property.
Since the only KVC-compliant change for the textStorage property would be to
change it to a completely new object instance, and that would be very wasteful,
you w
On 2013 Apr 24, at 07:58, Steve Mills wrote:
> Could it be because we're not using Cocoa's undo manager or because I have
> preservesVersions and autosavesInPlace turned off?
Yes.
Plus everything that Mike said on this thread today.
As I said yesterday, there are three different autosave mec
On 2013 Apr 24, at 11:00, Steve Mills wrote:
> but the way Cocoa doesn't prevent things from happening in version browser
> documents added a huge amount to our workload
That's maybe not the hardest thing you'll do this week. Add this to your code
snippets…
if ([self isInViewingMode]) {
On Apr 24, 2013, at 13:29:13, Jerry Krinock
wrote:
> That's maybe not the hardest thing you'll do this week. Add this to your
> code snippets…
>
>if ([self isInViewingMode]) {
>NSBeep() ;
>return ;
>}
>
> and start pasting! My Lion-autosaved app uses that in 34 place
Hi,
I have an NSSearchField, and a menu bar submenu with the standard Find items.
When the search field receives some input, it performs its action and an array
controller is filled with search results. Now, while the search field is the
first responder, none of the Find items are enabled, so i
I found the solution.
Just do [theTextView didChangeText] in the end of the changes.
Thanks
-
Peng
On Wed, Apr 24, 2013 at 2:08 PM, Kyle Sluder wrote:
> Mutating an attributed string doesn't count as "key-value coding", even if
> the string itself is exposed as a KVC-compliant property.
>
> S
18 matches
Mail list logo