Following up on this, I was able to compile my test app so that it runs on
10.6.8. And indeed the bug is still there. Very strange. This is a most
trivial test app - load a pdf into a pdfview. When compiled on 10.9 with Xcode
5.0.2, the pages of the pdf do not refresh when scrolling (they remai
Okay, so I think I know what the problem is here - the problem is that I prompt
the user for a filename, and then I modify the filename before using it. I
suspect that sandboxd looks dimly on what I've done, and considers me to be
riding roughshod over the users wishes! In fact I'm not, but th
On Nov 24, 2013, at 09:04 , Pax <45rpmli...@googlemail.com> wrote:
> Here's the problem. I'm writing out (potentially) very large files. It
> might be that the user doesn't want one huge xml file - instead they might
> want a bunch of smaller xml files. Therefore I prompt the user for a
> fi
On Sun, Nov 24, 2013, at 11:31 AM, Quincey Morris wrote:
>
> Alternative 1. Instead of asking for a base *file* name, ask for a new
> *folder* name via NSSavePanel. That is, if the user enter “XYZ”, create a
> new folder of that name and put the files inside it, with a
> pre-determined name or eve
I am making a simple mac os x app, in which I will be showing some records
in a table view, after retrieving those from local db. I am using core data
and NSArrayController proxy for the same and I am trying to achieve it
through cocoa-bindings.
Now I can easily make it working, by performing this
On Nov 24, 2013, at 12:21 , Kyle Sluder wrote:
> You don't need a second panel; add an accessory view to the open panel
> that contains a label for the prefix.
A much better idea!
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not
Resolved this problem, by using below code :-)
- (void)awakeFromNib
{
[self.listManagedObjectContext setPersistentStoreCoordinator:[
NSAppDelegate persistentStoreCoordinator]];
}
On Sun, Nov 24, 2013 at 2:53 PM, Devarshi Kulshreshtha <
devarshi.bluec...@gmail.com> wrote:
> I am making a