On 29/05/2009, at 3:28 PM, Erg Consultant wrote:
I think the runtime stuff on OS X was never really ready for prime-
time.
LOL. That's hilarious! :)
--Graham
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin reques
Ok, I see. The main thing is that now it works and I can setup the
bindings in IB instead of programatically which is another bonus...
Thanks for all the information,
Tom
On 28.5.2009, at 16:23, Keary Suska wrote:
On May 27, 2009, at 10:07 PM, Tomaž Kragelj wrote:
Thanks Keary, this works,
Oddly it worked. I set LSUIElement in the Info.plist and the app UI works
without the Dock or task list icon.
However, doing that caused another weird problem - now my app launches multiple
instances of itself every time I double-click it. Remove the LSUIElement key
and that behavior goes away.
On May 28, 2009, at 6:31 PM, Erg Consultant wrote:
That is exactly what I want - my app is a standard Cocoa app with a
few windows and a menu bar but it's used to launch other apps - so I
don't want it showing up in the Command-Tab switch list, the Dock,
or the Force Quit window. Mainly, I
The fact that AppKiDo isn't built in is one of the reasons I like it. When
you update your docs in Xcode's built-in browser a relaunch of AppKiDo will
cause it to pick up the changes.
Agreed on the loading delay. That's annoying. And it's pretty weak on the
polish side. It does display inherited m
On Thu, May 28, 2009 at 8:57 PM, Roland King wrote:
>>
>> So if i have:
>>
>> NSMutableString *title = [[NSString alloc] init];
>> [title setString: @"test"];
>>
>> That would be correct and safe?
>
> No. I hope it would emit warnings on compilation too.
No warning will be emitted. -init is decla
On May 28, 2009, at 9:51 AM, Mike Crowe wrote:
I'm running into a CPU usage problem with my Cocoa application.
Basically
once the app has been running for a few hours it starts, all of a
sudden, to
steadily consume an increasing amount of CPU.
On further investigation with Instruments, it s
Seems to be what I needed.
Thanks,
Mr. Gecko
On May 28, 2009, at 3:27 PM, Dave Keck wrote:
Check out CGPostKeyboardEvent.
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin requests or moderator comments to the list.
On 29/05/2009, at 1:10 PM, Andy Lee wrote:
In what way? Show the stack trace. Show your code. Show something.
Yes. Don't expect people to guess what you're doing. SHOW US what
you're doing and tell us what happened.
And to that list I could have added show some initiative!
--Graham
_
On May 28, 2009, at 11:08 AM, Graham Cox wrote:
On 29/05/2009, at 12:47 AM, Sourabh Sahu wrote:
I created NSDocument which has inbuilt SavePanel, what I want is
the reference of SavePanel in my class.
What's an inbuilt save panel? Because there isn't one in a normal
NSDocument
I tried N
On May 28, 2009, at 2:16 PM, Quincey Morris wrote:
Well, yeah. The problem is that you're using something with the
behavior of an entity (your custom object) as an attribute. That is,
you want your object graph to include your custom objects (for the
purpose of monitoring their changes), b
That is exactly what I want - my app is a standard Cocoa app with a few windows
and a menu bar but it's used to launch other apps - so I don't want it showing
up in the Command-Tab switch list, the Dock, or the Force Quit window. Mainly,
I need my windows and menubar to still be visible.
Thanks
On 29/05/2009, at 11:19 AM, Erg Consultant wrote:
- (id)init
{
if( !gReg )
{
if( ( self = [ super init ] ) )
{
// Zero out members...
keys = nil;
lastFlushTime = nil;
}
}
return self;
}
This is a little broken.
-init must a
On May 28, 2009, at 1:57 PM, Erg Consultant wrote:
Is there a way to hide a GUI app's icon in the process/switch list
as can be done for faceless background apps?
I've tried several of the Info.plist settings but nothing seems to
do this.
Thanks,
Erg
Hi Erg,
The LSUIElement key preve
The object's -init looks like this:
- (id)init
{
if( !gReg )
{
if( ( self = [ super init ] ) )
{
// Zero out members...
keys = nil;
lastFlushTime = nil;
}
}
return self;
}
Oddly, I just ran
Better than making mistake one after another.
But good lesson for me.
Cheers,
John
On Thu, May 28, 2009 at 6:01 PM, Graham Cox wrote:
>
> On 29/05/2009, at 10:56 AM, Andrew Farmer wrote:
>
> Nope, that'd be assigning a NSString instance to a NSMutableString
>> variable
>>
>
>
> oops, missed t
Erg Consultant wrote:
Oddly, the object returned is non-nil.
I should mention that the pointer being returned is a hack global
declared at the top of the file like this:
static Registry *gReg = nil;
but that shouldn't matter.
Post your code for alloc and -init.
Your question can only be
On 29/05/2009, at 10:56 AM, Andrew Farmer wrote:
Nope, that'd be assigning a NSString instance to a NSMutableString
variable
oops, missed that ;-)
--Graham
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin requests
So if i have:
NSMutableString *title = [[NSString alloc] init];
[title setString: @"test"];
That would be correct and safe?
Thank!!
John
No. I hope it would emit warnings on compilation too. That would set
title to an NSString instance, then you go calling setString: on it and
that's an
On 28 May 2009, at 17:48, Graham Cox wrote:
On 29/05/2009, at 10:42 AM, John Ku wrote:
NSMutableString *title = [[NSString alloc] init];
[title setString: @"test"];
That would be correct and safe?
Yes, but pointless.
Nope, that'd be assigning a NSString instance to a NSMutableString
varia
Yeah sorry everyone, in the original example i am using a constant.My
working app is actually using a mutable string. So I've got both mixed up.
And yeah, NSMutableString will be initialized else where and released later.
*hits myself in the head* Im not processing correctly today..
Thanks,
John
On Thu, May 28, 2009 at 5:42 PM, John Ku wrote:
> Thank you all for the explanation. After reading over and experiment, I kind
> of get what you all are saying.I've probably confused myself too much with
> the dot syntax to use title = @"fdsfd".
>
> So if i have:
>
> NSMutableString *title = [[NSS
On 29/05/2009, at 10:42 AM, John Ku wrote:
NSMutableString *title = [[NSString alloc] init];
[title setString: @"test"];
That would be correct and safe?
Yes, but pointless.
If the string is a constant, use a constant.
NSString* string = @"whatever";
--Graham
_
On Thu, May 28, 2009 at 4:57 PM, John Ku wrote:
> I have this original class with the following method:
> - (void) update {
> NSString *title = [[NSString alloc] init];
You create an empty string instance in the above and make title point at it.
> title = @"TEST";
You then make title point a th
Thank you all for the explanation. After reading over and experiment, I kind
of get what you all are saying.I've probably confused myself too much with
the dot syntax to use title = @"fdsfd".
So if i have:
NSMutableString *title = [[NSString alloc] init];
[title setString: @"test"];
That would b
How is your init defined?
Mike Manzano
Sent while mobile
On May 28, 2009, at 4:34 PM, Erg Consultant
wrote:
I have an object which I initialize like this:
gReg = [ [ Registry alloc ] init ];
Problem is, my init method never receives any message.
Does anyone know what can cause this?
T
On Thu, May 28, 2009 at 4:57 PM, John Ku wrote:
> NSString *title = [[NSString alloc] init];
> title = @"TEST";
NSString is immutable, and Objective-C doesn't have operator
overloading. So what you're doing here is creating an empty NSString,
assigning a pointer to it to your title variable, the
On Thu, May 28, 2009 at 4:53 PM, Erg Consultant
wrote:
> Either your main thread doesn't implement the selector requested, or else
> it's an issue with the runloop never processing the request. If you have code
> that alters the runloop or modifies its input sources, check that code first.
Thre
On 28 May 2009, at 16:57, John Ku wrote:
Is this a more efficient way to code? Which coding practice is
better in
terms of efficiency, memory, performance?
The update method will get called often. So Im thinking there is no
need to
create 'NSPoint drawAtOrigin' everytime.
Your thoughts?
N
On 29/05/2009, at 9:57 AM, John Ku wrote:
I have this original class with the following method:
- (void) update {
NSString *title = [[NSString alloc] init];
title = @"TEST";
This is incorrect for a start. You are leaking an empty string. You
allocate and initialise it, then reassign its poi
what does the declaration of init look like?
On May 28, 2009, at 5:46 PM, Erg Consultant wrote:
Oddly, the object returned is non-nil.
I should mention that the pointer being returned is a hack global
declared at the top of the file like this:
static Registry *gReg = nil;
but that shouldn'
I have this original class with the following method:
- (void) update {
NSString *title = [[NSString alloc] init];
title = @"TEST";
NSPoint drawAtOrigin;
drawAtOrigin.x = 0;
drawAtOrigin.y = 10;
[title drawAtPoint: drawAtOrigin withAttributes: nil];
}
Here, I updated it trying to be efficient:
Either your main thread doesn't implement the selector requested, or else it's
an issue with the runloop never processing the request. If you have code that
alters the runloop or modifies its input sources, check that code first.
Erg
From: Ben Einstein
To: c
Oddly, the object returned is non-nil.
I should mention that the pointer being returned is a hack global declared at
the top of the file like this:
static Registry *gReg = nil;
but that shouldn't matter. And I've checked that that global is never set to
nil or created twice anywhere else in th
what is the result of [ Registry alloc ] ?
On May 28, 2009, at 5:34 PM, Erg Consultant wrote:
I have an object which I initialize like this:
gReg = [ [ Registry alloc ] init ];
Problem is, my init method never receives any message.
Does anyone know what can cause this?
Thanks,
Erg
I have an object which I initialize like this:
gReg = [ [ Registry alloc ] init ];
Problem is, my init method never receives any message.
Does anyone know what can cause this?
Thanks,
Erg
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.c
Hi all,
I have some animation code that looks like this:
CABasicAnimation *theAnimation = [CABasicAnimation
animationWithKeyPath:@"position.x"] ;
NSLog( @"ANIMATION: started %x" , theAnimation ) ;
theAnimation.removedOnCompletion = YES ;
theAnimation.duration = 0.125f
BOOL isInTrash(NSString* path) {
FSRef fsRef;
Boolean result = false ;
OSStatus err = FSPathMakeRef(
(UInt8*)[path UTF8String],
&fsRef,
NULL) ;
if (err == noErr) {
FolderType
Is there a way to hide a GUI app's icon in the process/switch list as can be
done for faceless background apps?
I've tried several of the Info.plist settings but nothing seems to do this.
Thanks,
Erg
___
Cocoa-dev mailing list (Cocoa-dev@li
>From the docs:
"This function is not recommended for general use because of undocumented
special cases and undesirable side effects. The recommended replacement for
this function is CGEventCreateKeyboardEvent, which allows you to create a
keyboard event and customize the event before posting i
If you have Xcode installed, you can find the sample code in /
Developer/Examples/Bluetooth.
RFCOMMClientSample and RFCOMMServerSample show how to implement a
Bluetooth serial service and client and are a great starting point.
It should show you enough to address both issues.
-Daniel Pasc
On May 28, 2009, at 11:59 AM, Rick Hoge wrote:
Ben, Quincey, Sean, thanks for the comments. Maybe there are some
lower level design issues to rethink.
This pattern is usually a flawed model design. If the properties
are to be this independently mutable, then there should be a
relatio
Check out CGPostKeyboardEvent.
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscr
Just a follow-up. It's not perfect, and I'll revisit the design, but
it does what I need for now.
Specifically my entity has a 'transformable' attribute for which the
values are a custom object class, and this object class has an ivar
that is an NSMutableDictionary. The user can modify ent
On Thu, May 28, 2009 at 12:11 PM, archana udupa wrote:
> Thanks in advance for those who can help me..:)I have subclass of
> textview. I want to add find and replace menu items.How can i do that?
Look at the default Edit:Find:Find… menu item. It's wired up to First
Responder's -performFindPane
On Thu, May 28, 2009 at 12:36 PM, Michael Süssner
wrote:
> I think that this implementation is according to the MCV-pattern, isn't it.
Yes, that's correct.
--Kyle Sluder
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin
I have a master-detail view, where the detail contains another table
with a one-to-many relationship.
I have added a Remove Button which I have linked to the corresponding
controller object.
Although the list is not empty, I cannot remove any relationship. Then
I have bound the canRemove
Thanks for the hint
Am 28.05.2009 um 01:23 schrieb Shlok Datye:
The reason why IB complains is that the dot accessor only returns a
regular set. You should therefore use "IBOutlet NSSet
*selParticipants" instead.
For the same reason, you cannot add a participant to
selection.participant
I have found a solution.
By adding a property to the File's Owner I have been able to bind the
attribute to the PopupMenu and now it works fine.
I think that this implementation is according to the MCV-pattern,
isn't it.
Thanks, for the help
Am 28.05.2009 um 20:49 schrieb Kyle Sluder:
O
On Thu, May 28, 2009 at 11:59 AM, Rick Hoge wrote:
> The user can change the input parameters in the object's dictionary of
> inputs, and this should be reflected in the persistent store of
> corresponding to the custom attribute on disk. I realize this is ugly, but
> I can't think of any other
Hi lists
Thanks in advance for those who can help me..:)I have subclass of
textview. I want to add find and replace menu items.How can i do that?
--
With Regards,
-
Archiez...:0)
On May 28, 2009, at 7:37 AM, Aaron London wrote:
Is it possible from that thread to load a NSWindow from a nib and be
able to have that window respond to UI events?
No; it is a bad idea to load nibs in threads other than the main
thread. You can't count on both the AppKit and instantiated
Ben, Quincey, Sean, thanks for the comments. Maybe there are some
lower level design issues to rethink.
This pattern is usually a flawed model design. If the properties
are to be this independently mutable, then there should be a
relationship, and/or the complex attribute should be deco
On 26 May 2009, at 6:34 PM, Diego Rey Mendez wrote:
I'm new to development on the iPhone. I have been reading for a
while now
the official docs, and some tutorials and posts online explaining
the use
of NSUserDefaults.
My questions:
1) It sounds to me as if this is the preferred class for
On Thu, May 28, 2009 at 11:16 AM, Michael Süssner
wrote:
> Now I have the problem how I can read the index of the currently selected
> object of the popupmenu.
This is typically indicative of a flawed design. You shouldn't be
asking the UI for this; bind one of the selection bindings to a
proper
On Thu, May 28, 2009 at 11:36 AM, John Yeh wrote:
> How do I open a specific window in a nib file? I tried to use the following
> code, but it displays ALL the windows in that nib file.
Typically, you only have one window per nib file. There's usually a
one-to-one correspondence between nib fil
On 5/28/09 11:25 AM, Ben Trumbull said:
>> Specifically my entity has a 'transformable' attribute for which the
>> values are a custom object class, and this object class has an ivar
>> that is an NSMutableDictionary. The user can modify entries in this
>> dictionary, and I would like this to cau
How do I open a specific window in a nib file? I tried to use the following
code, but it displays ALL the windows in that nib file.
DialogController
-[id]init
{
self = [super initWithWindowNibName:@"MyNibName"];
}
DialogController *dialogController = [[DialogController alloc] init];
[NSApp runModa
Hello everyone,
I'm porting an Application from 10.4 to 10.5 at 64 bit, and I have a
problem with resource files,
in the Tiger app I have this code to read some resource files:
FSSpec spec;
FSRef ref;
CFURLRef url = (CFURLRef)[NSURL fileURLWithPath: myPathString];
if (CFURLGetFSRef(url, &ref)
Hi all,
I'm running into a CPU usage problem with my Cocoa application. Basically
once the app has been running for a few hours it starts, all of a sudden, to
steadily consume an increasing amount of CPU.
On further investigation with Instruments, it seems that object allocations
seem to be the ca
I had to do this recently. I needed to convert an NSXMLDocument to an
NSDictionary. If you're interested, you can find the code on GitHub:
http://github.com/Caged/aixmlserialize/blob/5322baec2f075d6f4f3bf9cab53b6a606c48ad76/src/AIXMLElementSerialize.m
Justin Palmer
http://alternateidea.com | ht
I'm working on a Finder CM plugin that needs a more complex UI for
some menu item commands than CFUserNotificationCreate provides. All
menu item commands for this CM perform work via an NSObject derived
class on a thread so as not to block the Finder. Is it possible from
that thread to load
Specifically my entity has a 'transformable' attribute for which the
values are a custom object class, and this object class has an ivar
that is an NSMutableDictionary. The user can modify entries in this
dictionary, and I would like this to cause the context to be flagged
as dirty and to have th
On May 28, 2009, at 06:03, Rick Hoge wrote:
I have a core data (doc-based) app in which one of the entities
includes a custom object as a persistent attribute. The custom
object class implements NSCoding, and these objects are saved to the
core data store with no problem (they are read bac
I have a table of objects (core data) which are used to fill the
content of a NSPopupMenu. The user should be able to choose an abject.
Afterwards the user should click on a button and the selected object
should be added to another table.
Now I have created a NSArrayController object and bo
On May 28, 2009, at 8:39 AM, Jesper Storm Bache wrote:
Does your latest statement mean that the following (from http://developer.apple.com/documentation/CoreFoundation/Conceptual/CFBundles/Tasks/loading.html#//apple_ref/doc/uid/20001127-124675
)
is incorrect/obsolete information:
"You can unloa
Well at the time I wrote that, I thought it was sitting completely
idle, but it seems the NSManagedObjectContext lock was blocking the
main thread, even my application is specifically designed to not do
that. It's working okay now...
Thanks,
Ben
On May 28, 2009, at 1:51 PM, Shawn Erickson
On Thu, May 28, 2009 at 9:46 AM, Ben Einstein wrote:
>> (2) The main run loop is not running for some reason.
>
> The main run loop is waiting to hear back from the completion of the worker
What do you mean by "waiting"? Is it blocked on something?
-Shawn
___
I'm not sure the best way to do this, but suppose I have two
NSArrayControllers, tableView1Controller and tableView2Controller.
Now suppose I have an NSArrayController, table3Controller.
What I am trying to do is to have it so that table3Controller's
Content Array binding depend on both ta
On May 28, 2009, at 12:13 PM, Ben Einstein wrote:
Thanks for the advice, I had actually tried that as well to no avail.
After playing around a bit, I'm fairly certain I've solved it,
although I'm not really sure why it was a problem. At the top of the
worker method, I was locking the NSMan
On 28-May-09, at 12:56 PM, Dave Fernandes wrote:
When the instance variable changes in your custom class, you can
call willChangeValueForKey: and didChangeValueForKey: for the entity
that contains your custom class.
I haven't ever had to do this, but it is the first thing I would try.
Th
So I need a simple OS X application (either an existing desktop
application, or a simple command-line application) that can serialize
a PNG image
into a BLOB (keeping all metadata, etc.) for access by a SQLite (or
any SQL-type DB) engine (used within a Cocoa/iPhone application).
AFAIK a SQLite3
Thanks for the advice, I had actually tried that as well to no avail.
After playing around a bit, I'm fairly certain I've solved it,
although I'm not really sure why it was a problem. At the top of the
worker method, I was locking the NSManagedObjectContext and unlocking
it just before retu
On May 28, 2009, at 9:46 AM, Ben Einstein wrote:
On May 28, 2009, at 12:36 PM, Jeff Johnson wrote:
Three general possibilities:
(1) aControllerObject is nil.
Definitely not the problem because it works when calling
performSelector: without the mainThread part.
(2) The main run loop i
When the instance variable changes in your custom class, you can call
willChangeValueForKey: and didChangeValueForKey: for the entity that
contains your custom class.
I haven't ever had to do this, but it is the first thing I would try.
Dave
On May 28, 2009, at 12:34 PM, Rick Hoge wrote:
On May 28, 2009, at 12:36 PM, Jeff Johnson wrote:
Three general possibilities:
(1) aControllerObject is nil.
Definitely not the problem because it works when calling
performSelector: without the mainThread part.
(2) The main run loop is not running for some reason.
The main run loop i
Three general possibilities:
(1) aControllerObject is nil.
(2) The main run loop is not running for some reason.
(3) The main run loop is not running in one of NSRunLoopCommonModes.
Assuming you've eliminated (1), I'd look at (3).
-Jeff
On May 28, 2009, at 11:11 AM, Ben Einstein wrote:
Doe
On 28-May-09, at 10:39 AM, Keary Suska wrote:
On May 28, 2009, at 7:03 AM, Rick Hoge wrote:
I have a core data (doc-based) app in which one of the entities
includes a custom object as a persistent attribute. The custom
object class implements NSCoding, and these objects are saved to
t
well .. it's hard to say until you actually try it and profile your
code however ..
I try to stick to something like 2. whenever it doesn't cause me to
bend the code around too much. I use alloc/init .. use variable ..
release whenever I can. Absolutely nothing guarantees that anything in
On May 28, 2009, at 10:11 AM, Ben Einstein wrote:
Does anyone know of any issue that would cause
performSelectorOnMainThread to not actually perform the selector but
not report any kind of error?
Are you sure the main thread isn't busy and is running a run loop in
its default mode?
Ni
On May 28, 2009, at 9:20 AM, Reza Farhad wrote:
I have a situation where I need to create a new string as I go
through a loop.
What will be the most efficient way of doing this each time the call
goes through the loop.
1. To create an auto releasing string.
2. To create a non auto-releasin
Hi
I have a situation where I need to create a new string as I go through
a loop.
What will be the most efficient way of doing this each time the call
goes through the loop.
1. To create an auto releasing string.
2. To create a non auto-releasing string at the start of the loop and
releas
Does anyone know of any issue that would cause
performSelectorOnMainThread to not actually perform the selector but
not report any kind of error? I use threads very often and have never
had a problem like this, but when I call:
[aControllerObject performSelectorOnMainThread:@selector(doSome
Mike McLaughlin. wrote:
I'm familiar with recursion; that is what prompted my query.
However, the
tree-traversal documentation at
http://devworld.apple.com/documentation/Cocoa/Conceptual/
NSXML_Concepts/Arti
cles/TraversingTree.html#//apple_ref/doc/uid/TP40001257
seems to indicate that th
Does your latest statement mean that the following (from http://developer.apple.com/documentation/CoreFoundation/Conceptual/CFBundles/Tasks/loading.html#/
/apple_ref/doc/uid/20001127-124675)
is incorrect/obsolete information:
"You can unload the contents of a CFBundle object using
CFBundleUnlo
On May 28, 2009, at 7:52 AM, Andy Lee wrote:
On Wednesday, May 27, 2009, at 11:23PM, "Bill Bumgarner"
wrote:
If you find something that is causing a bundle with Objective-C code
to be unloaded, please file a bug via http://bugreport.apple.com/.
It isn't supported and the number of edge cases
On 29/05/2009, at 12:47 AM, Sourabh Sahu wrote:
I created NSDocument which has inbuilt SavePanel, what I want is the
reference of SavePanel in my class.
What's an inbuilt save panel? Because there isn't one in a normal
NSDocument
I tried NSSavePanel *panel = [NSDocument savePanel]
But t
Hi all,
I know this is off-topic, but I posted to the Spotlight list and got
no replies, and I thought someone here might know this.
Can anyone list the default set of mdimporter filters shipped with Mac
OS X 10.4? I can figure this out by doing a clean install, but I am
hoping to avoid t
On 28 May 2009, at 16:36, Nikhil Khandelwal wrote:
Hi all,
I want to find out which application is the default one for .x
extension file in my application and to make my application the
default one for that extension.
For finding out who is "owning" an extention you should use the Launch
On Wednesday, May 27, 2009, at 11:23PM, "Bill Bumgarner" wrote:
>On May 27, 2009, at 8:20 PM, Andy Lee wrote:
>> I just noticed an earlier message in this thread that points out
>> that stringWithString: does in fact do the same optimization as -
>> copy for constant strings. So the approach i
Hi All,
I created NSDocument which has inbuilt SavePanel, what I want is the reference
of SavePanel in my class.
I tried NSSavePanel *panel = [NSDocument savePanel]
But the code crashes.
Any help will be appreciated.
-Sourabh
DISCLAIMER
==
This e-mail may contain privileged and confidenti
On May 28, 2009, at 7:03 AM, Rick Hoge wrote:
I have a core data (doc-based) app in which one of the entities
includes a custom object as a persistent attribute. The custom
object class implements NSCoding, and these objects are saved to the
core data store with no problem (they are read
Hi all,
I want to find out which application is the default one for .x extension file
in my application and to make my application the default one for that extension.
Its an urgent project requirement, so please reply as soon as possible.
Thanks,
NIKHIL
DISCLAIMER
==
This e-mail may con
On 29/05/2009, at 12:21 AM, Graham Cox wrote:
makeObjectPerformSelector
makeObjectsPerformSelector:
^
--G.
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin requests or moderator comments to the list.
Conta
On May 27, 2009, at 10:07 PM, Tomaž Kragelj wrote:
Thanks Keary, this works, however it requires that the same binding
is repeated in each nib where the same list should be handled (some
views may only need to show it while others can also modify it). I
was thinking of creating a "master" s
On 28/05/2009, at 11:56 PM, McLaughlin, Michael P. wrote:
Hello,
I think you’re correct in what you show below. I was expecting
that, since an XML document is already a tree, it would already have
an equivalent to what you describe. I’ve reinvented the wheel too
many times and now try
Hi All,
I am doing a screen sharing app for iPhone and Mac.I captured the Mac Screen as
NSImage using OpenGL and send it to iPod as Gif data. But sending and restoring
to UIImage process make delay because of Image size.The image size of capture
is 320 x 388.
Is any better way available for comp
I have a core data (doc-based) app in which one of the entities
includes a custom object as a persistent attribute. The custom object
class implements NSCoding, and these objects are saved to the core
data store with no problem (they are read back correctly etc).
Instance variables of t
Hello, I'm trying to find out how to like make a button that will push
the key h or whatever so I can make an virtual keyboard.
Any tips/help?
Thanks,
Mr. Gecko
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin request
On 28/05/2009, at 10:45 PM, McLaughlin, Michael P. wrote:
I'm familiar with recursion; that is what prompted my query.
However, the
tree-traversal documentation at
http://devworld.apple.com/documentation/Cocoa/Conceptual/NSXML_Concepts/Arti
cles/TraversingTree.html#//apple_ref/doc/uid/TP400
1 - 100 of 116 matches
Mail list logo