Dear List,
I distribute a LaTeX typesetting and project manager app and one of the main
feature requests is the ability to assign keyboard shortcuts (or rather modify
the ones I ship). So I started researching a little how to do this and came
across solutions involving PTHotKey (or DDHotKey) an
On Sep 19, 2012, at 2:23 AM, Martin Hewitson wrote:
> I distribute a LaTeX typesetting and project manager app and one of the main
> feature requests is the ability to assign keyboard shortcuts (or rather
> modify the ones I ship).
> But during my reading I also started to wonder if offering su
Briefly in my app (OSX), I download data from a database to be
displayed in a view. I created a Controller that takes care of the
NSURLConnection, retrieves the data, and sends it to a database model
class to parse. It also takes care of updating the UI during the
download ("Download in progress",
Ken, thanks for your thoughts. That helps me a lot. You say that providing good
keyboard shortcuts in the first place is the best approach, and that's what I
think I did, at least for people using a US keyboard. It's hard to predict
what others find comfortable and it certainly depends on the k
FYI, if you're interested in creating a GUI interface for the key bindings for
the user, please do it better than how Xcode did it.
In Xcode's Key Bindings GUI, the key bindings are not always represented in the
form of all the modifier keys required for the command to be invoked.
For example,
On 19 Sep 2012, at 9:30 AM, Alex Zavatone wrote:
> For example, in the bindings section of Preferences, there are cases where
> you will see command | (pipe or vertical bar) and command _ .
>
> What these really mean are command shift \ and command shift -, since shift
> on the \ gives you the
On Sep 19, 2012, at 11:09 AM, Fritz Anderson wrote:
> On 19 Sep 2012, at 9:30 AM, Alex Zavatone wrote:
>
>> For example, in the bindings section of Preferences, there are cases where
>> you will see command | (pipe or vertical bar) and command _ .
>>
>> What these really mean are command shif
Am I supposed to be able to update my iOS 6 beta iPad over the air with the
release today? It doesn't present it as an option.
Was there a change between the last pre-release and the final (I sure hope so!)?
--
Rick
___
Cocoa-dev mailing list (Co
I haven't implemented what you're describing, but you might want to look
at Marcus Zarra's talk on Flexible JSON Importing. I don't know what
you're parsing (JSON, XML, or something else). I found the slides for
Marcus' Flexible JSON Importing talk here:
http://www.mactech.com/conference/presentati
I am creating a master-detail app for both iPad and iPhone families of devices.
For the iPad I use a split view controller and for the iPhone I use the
standard drill-down interface (a table view when selected pushes the detail
view onto the screen).
Now it feels kind of awkward when a user fir
Thanks for the link, lots of info there. Unfortunately he doesn't
discuss the responsibility of the MVC classes in the slides regarding
the best location for the NSURLConnection code. I got that and the
paring already working, but need to make it more flexible.
- Koen.
On Wed, Sep 19, 2012 at 2:0
On Thu, Aug 23, 2012, at 09:34 PM, George Nachman wrote:
> My application implements the NSApplicationDelegate method
> -application:openFile: in its app delegate. There seems to be a problem
> new
> to OS 10.8 where after receiving the apple event to open a file, five
> seconds pass before some ki
Hi Guillaume,
thank you for the info! One more thing I was posting above - since all the
binaries are the same, is it really enough to create a duplicate class on
runtime from it? It's just that if you load say AU first, then load VST,
the system creates classes from AU, so why should it be duplic
I've been using the following code since a couple of months now:
self.userTrackingModeButton = [[MKUserTrackingBarButtonItem alloc]
initWithMapView:self.rangeMapView];
[self.userTrackingModeButton setTarget:self];
[self.userTrackingModeButton setAction:@selector(track:)];
Why does AppKit call into NSDocument's -close multiple times by indirect
recursion? Can this be on purpose?
It happens when I have this:
1) A document with unsaved with changes
2) Terminate the app via CMD-Q
3) Answer "Don't Save" in the save-changes-sheet
This doesn't smell right. I override
Seed data is always a good idea. A “tap here to make a new item” approach
would also work in some cases.
Best,
Eve
On Sep 19, 2012, at 11:30 AM, "Richard Altenburg (Brainchild)"
wrote:
> I am creating a master-detail app for both iPad and iPhone families of
> devices. For the iPad I use a s
My iPad says I have 10A5376e.
On Sep 19, 2012, at 13:00 , davel...@mac.com wrote:
>
> On Sep 19, 2012, at 1:59 PM, Rick Mann wrote:
>
>> Am I supposed to be able to update my iOS 6 beta iPad over the air with the
>> release today? It doesn't present it as an option.
>>
>> Was there a change
On 19.09.2012, at 20:30, Richard Altenburg (Brainchild)
wrote:
> Is it considered good practice to create an initial item on start-up (only
> when there is no user created item already) and programmatically select that
> item in the table view and go into its detail view immediately? That way t
On Sep 19, 2012, at 4:25 PM, Rick Mann wrote:
> My iPad says I have 10A5376e.
>
> On Sep 19, 2012, at 13:00 , davel...@mac.com wrote:
>
>>
>> On Sep 19, 2012, at 1:59 PM, Rick Mann wrote:
>>
>>> Am I supposed to be able to update my iOS 6 beta iPad over the air with the
>>> release today?
On Sep 19, 2012, at 12:14 PM, Koen van der Drift
wrote:
> Thanks for the link, lots of info there. Unfortunately he doesn't
> discuss the responsibility of the MVC classes in the slides regarding
> the best location for the NSURLConnection code. I got that and the
> paring already working, but
My iPad got the ota update which was on 5. iPhone which was on 6b4 did NOT
get the ota update. So I downloaded the ipsw from the dev site and
installed through itunes.
On Wed, Sep 19, 2012 at 10:59 AM, Rick Mann wrote:
> Am I supposed to be able to update my iOS 6 beta iPad over the air with
>
Hi Koen,
Your approach doesn't sound that wrong to me.
How about having a master controller that is more or less what you have now,
and split the functionality that handles the data stream out into a separate
class that the master controller calls on to fetch the data? Then according to
what i
On Sep 19, 2012, at 13:57 , davel...@mac.com wrote:
> What happens if you go to the above URL, log in, download the appropriate
> file for your iPad and install it manually from your computer?
That's what I had to do. Unfortunately, iTunes wouldn't see my iPad until I
quit and relaunched it (i
Interesting.
Just to clarify, it appears that you have *not* adopted Auto Save
(+autosavesInPlace) in this document?
And it is running in Mac OS X 10.8?
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin requests or mod
On Sep 19, 2012, at 3:01 PM, Gene Crucean wrote:
> My iPad got the ota update which was on 5. iPhone which was on 6b4 did NOT
> get the ota update. So I downloaded the ipsw from the dev site and
> installed through itunes.
And what is the build # of the OS from that dev site download? Is it new
No, that's it.
On Sep 19, 2012, at 19:39 , Jens Alfke wrote:
>
> On Sep 19, 2012, at 3:01 PM, Gene Crucean
> wrote:
>
>> My iPad got the ota update which was on 5. iPhone which was on 6b4 did NOT
>> get the ota update. So I downloaded the ipsw from the dev site and
>> installed through itune
Hi,
I have tabbar based audio streaming application. I want to receive the
remote control event when app is in any tab when it is in background. So I have
implemented beginReceivingRemoteControlEvents and endReceiveRemoteControlEvents
in each view controllers viewWillAppear and viewWillDisapp
Trying to login to http://bugreport.apple.com. But get "an error did occur"
persistently.
I seem to remember some discussion about this a few days ago.
Is anybody able to use the bugreport?
Gerriet.
Safari 6.0 - 10.8.1
___
Cocoa-dev mailing list (C
I was the person who started the discussion a few days ago; without any action
on my part -- no changes in Safari preferences, no rebooting of my computer,
and so on -- the problem went away. I can now log in to bugreport with no
problem.
Beats me, but I think Apple did something ...
-- Jay
On 9/20/12 3:05 AM, Jerry Krinock wrote:
Interesting.
Just to clarify, it appears that you have *not* adopted Auto Save
(+autosavesInPlace) in this document?
Yes, that's correct.
Regards
Markus
--
__
Markus Spoettl
_
I might do both, although I can not do a "tap here" instruction if the Add
button is not visible at launch. Have to create another way for that initial
item to become alive.
Thanks for your thoughts.
[[[Brainchild alloc] initWithName:@"Richard Altenburg"] saysBestRegards];
Op 19 sep. 2012, om
Op 19 sep. 2012, om 22:31 heeft Uli Kusterer het
volgende geschreven:
> Is the item actually useful to the user beyond being there? Or would the user
> have to delete the item and create a sensible one to actually use your app?
The item is like a demo of what an item could look like, and the u
32 matches
Mail list logo