Cocoa is Apple's application-development framework for Mac OS X, consisting of Foundation, Application Kit, and Core Data. Use the "cocoa-touch" tag for iOS questions.
1
vote
1answer
21 views
How to run a specific project when you have multiple projects in xcode?
If you have a xcode project like restkit that has the core code for restkit + examples that have their own project, how do you run a specific project?
https://github.com/RestKit/RestKit/
If you look ...
1
vote
1answer
21 views
Detection of framework usage on Mac system?
I wanted to develop sample framework on OSX with having requirement that at any point in time the framework should be used by only single client, i am not getting how to achieve this ? is their any ...
11
votes
3answers
3k views
Run NSRunLoop in a Cocoa command-line program
Is it possible to initialize a NSRunLoop without loading any NIB files (i.e., without calling NSApplicationMain())?
Thanks.
0
votes
0answers
29 views
NSOutlineView selected item move
I have an NSOutlineView which has two groups and select one item when init. When I click HeaderCell and let one group collapse and the other expand, the selected item moves to the next group. Why does ...
0
votes
1answer
164 views
Displaying a To-Many Relationship in a Table View
I've got an application I've been working on. There are projects and employees, projects can have several employees, employees can work on several projects.
Right now I want selecting a project to ...
0
votes
1answer
12 views
How to bring all the app's windows to front when making active just one?
In my application I have 4-5 windows on screen simultaneously. Sometimes while working some of the windows can go back behind some other app's windows (behind xcode or safari for example). Then, when ...
0
votes
1answer
11 views
applicationDidBecomeActive doesn't fire in OSX application
In my app i have the following setup :
// .h
@interface MyDocument : NSPersistentDocument <NSApplicationDelegate>
{
...
}
// .m
@implementation MyDocument
-(void) ...
-2
votes
0answers
28 views
Reorder NSString, extern NSString *const hello; [closed]
How can I reorder the following strings?
extern NSString *const editorToolsKey;
extern NSString *const hello2;
extern NSString *const hello1;
extern NSString *const hello3;
I want to put them in a ...
0
votes
2answers
58 views
Detecting if a custom file icon was set in Cocoa
I wrote an app that sets a custom icon for some files, but as the creation of such an icon is quite expensive I'd like to test if a custom icon was already set before. With custom icon I mean an icon ...
1
vote
0answers
20 views
Running Youtube embedded player inside (cocoa) screensaver - how to block/trap fake user events?
The Youtube player seems to send fake user input events in order to prevent the screensaver from starting (I'm on osx/safari but the same thing happens in windows). This happens both with the ...
0
votes
0answers
12 views
Trouble setting up arrayController with NSTableView and Core Data
I am trying to set up multiple tables in a single window along with a core data model with related entities. Some of which have dictionaries and arrays as attributes. I have turned to manually ...
2
votes
0answers
21 views
How can I make an NSTextField that has focus redraw itself?
I've subclassed and defined my own custom NSFormatter and NSTextField classes in order properly display SMPTE time code values (HH:MM:SS:FF). When the user selects to use drop-frame for the fps ...
0
votes
0answers
9 views
iOS export call logs to csv/excel or similar file in app
I know that I cannot read directly from the call_history.db, but I know that itunes can export the call logs onto a mac, and several other programs can do this to PC or osx.
Is there any sort of ...
-4
votes
5answers
50 views
How to extract two numbers from an NSString?
Below is the string I have
NSString *myString = @"file_1_23.pdf";
^ ^^
What I want to extract is 1 & 23.
Any idea how to get this?
Other possible of string can be
...
1
vote
2answers
126 views
Core Data NSManagedObject isFault inside prepareForDeletion
I'm doing some processing inside - prepareForDeletion in a NSManagedObject. However when I try to access some properties of this class they are returned to me as nil (even though I know they are not ...
2
votes
2answers
529 views
UDP how can two computers on separate networks connect to each other?
Hey guys I had some questions about udp networking. First of all how can two computers that are on separate networks connect to each other? I know that you can do this with port forwarding but I know ...
0
votes
0answers
6 views
Using NSGlyph and memory allocation
in a method to track line breaks frequently, for a NSTextView visibleRect, i am allocating memory for NSGlyph to use NSLayoutManager getGlyphs:range:.
should/can i find out how much memory this ...
1
vote
1answer
227 views
Objective-C using dot syntax without explicit @property
I just wrote a setter and getter method in apples format. There is no variable for it but I noticed I could use the dot syntax. Am I crazy? Does this actually work? Could someone explain exactly what ...
5
votes
1answer
72 views
Does fast enumeration evaluate the collection expression on every iteration?
If I have the following piece of code:
for (UIView *view in [myArray copy])
Does that mean that I'm sending the copy message to myArray on every iteration, or Objective-C is smart enough to ...
1
vote
1answer
19 views
NSSplitView issues with 10.7 and 10.8
i'm experiencing some issues with AutoLayout. Building for 10.8 with Xcode 4.6.2 none of the constraints i setup work for OSX 10.7. Are there any known issues around this?
Thanks!
0
votes
3answers
94 views
UITableView is not reloading
I am making an App that uses a UITableView and UITableViewController. However, when I call [self.tableView reloadData]; in the UITableViewController, nothing happens, (tableView: ...
1
vote
0answers
25 views
Change password of PDF file
How can i change the password of a pdf file programmatically?
I have multiple pdf files in a folder and I want to change the password of all of them. I load the pdfs as described in the Quartz 2D ...
0
votes
1answer
128 views
Adding Custom Objects in Xcode 4
OK, this is the question :
We all know Object Library, with all the controls in it
How could I add a custom object into that list? (e.g. Under "Custom Objects")
I've read the following, but I ...
0
votes
0answers
17 views
Is it possible to use a cocoa control like inputtoolbar in Phonegap?
I have an app developed in jqueryMobile and Phonegap for iOS. I would like to use a cocoa control I have found called InputToolbar
Is it possible? Can you guide me in the right direction to do it? Thx ...
2
votes
3answers
60 views
How to write 0x00 into file
I'm writing some application which will communicate (write only) with my custom USB-serial device. It is Cocoa (OS X) application and part which is related to this writing is coded in POSIX style.
I ...
0
votes
2answers
27 views
Fail to jump from a portrait view to a landscape view
Everyone. I've got two views. The first view supports only landscape orientation and the second view supports all orientations. However, when the second view is portrait and a button is pressed, it ...
1
vote
1answer
18 views
Cocoa : How to intercept a right click on a free (no icon) area of the desktop?
I would like my app to react to a right mouse click on a free (no icon, other app window, ...) area of the desktop.
Thank you if you can help me.
Steven
0
votes
1answer
15 views
Drag Drop delegate for NSView could not set an attribute
I am using NSView delegate to read the dragged excel values. For this I have subclassed NSView. My code is like-
@interface SSDragDropView : NSView
{
NSString *textToDisplay;
}
...
39
votes
6answers
16k views
How to Check if an NSDate occurs between two other NSDates
I am trying to figure out whether or not the current date falls within a date range using NSDate.
For example, you can get the current date/time using NSDate:
NSDate rightNow = [NSDate date];
I ...
0
votes
0answers
19 views
dispatch_queue_set_specific memory leak
i'm using GCDAsyncUdpSocket in my project (osx 10.8.3) and after some time i got memory increase in that area:
- (id)initWithDelegate:(id)aDelegate delegateQueue:(dispatch_queue_t)dq ...
0
votes
0answers
12 views
How to add Scheduling in a Sandboxed app?
I need to add scheduling to my app. So that my app will launch automatically at a specified time and date. I have done it by referring Scheduling Timed Jobs. I have placed the plist file for ...
3
votes
4answers
130 views
Ligatures not do not work in UILabel/NSAttributedString in iOS 6
I am trying to turn on ligatures (NSLigatureAttributeName) for an NSAttributedString displayed by a UILabel.
I am targeting iOS 6.1 and running in the iPad simulator.
My set of test words are:
...
2
votes
3answers
66 views
Async image loading from url inside a UITableView cell - image changes to wrong image while scrolling
I've written two ways to async load pictures inside my UITableView cell. In both cases the image will load fine but when I'll scroll the table the images will change a few times until the scroll will ...
2
votes
1answer
34 views
Managing the memory for an object passed in to an in-out argument
I wonder how memory management must be done for method parameters that are used to pass values into the method and (optionally) return updated values from the method.
For example, the ...
4
votes
1answer
99 views
Change FocusRing color of NSTextField, NSTextView
How to change focusRing color from Blue to Red.
(This question is in continuation with Generic validation on input, here instead of setting a default blue focus, I need red one.)
The default looks ...
1
vote
4answers
2k views
Strange crash with block and phantom block argument exchange
I'm totally stumped with this one and hope someone could help me out here:
Class A:
- (void)setBlock:(BOOL(^)(id sender))block {
myBlock = Block_copy(block);
}
- (BOOL)runBlock:(id)sender {
...
0
votes
0answers
15 views
How to merge row of selected column like excel sheet in cocoa
I am trying to implement similar functionality(merging rows and highlight it by color) of microsoft excel sheet. is there any methods, api or any sample code for such type of functionality.
-1
votes
0answers
23 views
Use chrome or firefox cookie jar in osx application
I have written an os x app, but I have a problem.
My program logins on the site each time it downloads a file. It use safari cookie jar, when logins, so safari is logined on this site after my program ...
0
votes
0answers
23 views
NSMenu Not connecting method of another class
-(void)rightMouseDown:(NSEvent *)theEvent
{
cvcont = [[CollectionViweItemSubClass alloc] init ];
NSMenu * m = [[NSMenu alloc] init];
//[cvcont openInFinder];----perfectly ...
0
votes
2answers
801 views
Does each CALayer have it's own CGContextRef?
I'm trying to figure out the best way to do hit detection on a CALayer containing a non-rectangular path. I am aware of the CGContextPathContainsPoint function but im not sure how to get a reference ...
-1
votes
2answers
56 views
Difference between @property and variable within interface declaration [duplicate]
What's the difference between putting a variable inside of the @interface{} declaration in a header file, and putting in a @property after that declaration?
E.g.,
@interface GameCenterManager : ...
1
vote
1answer
16 views
Why would subclassing NSFormatter prevent me from editing NSTextField's input?
I'm trying to format two NSTextFields for SMPTE time codes, which have the format:
HH:MM:SS:FF. However, when the user switches the SMPTE code to drop-frame, the delimiter between SS and FF needs to ...
1
vote
0answers
22 views
How can I ensure that NSOperationQueue uses only one thread?
ABAddressBookRef can only be accessed by one thread. I think a good model would be having a thread for ABAddressBookRef in the background, besides the main thread.
How can I ensure that there's only ...
1
vote
1answer
25 views
Retina version of an image always used on non-retina display
In Cocoa application I've got 16x16 and 32x32 @2x version of an image: . When the image is displayed in NSImageView Mac OS X always picks higher-resolution version (i.e. downscales the @2x image on ...
0
votes
1answer
18 views
What is the equivalent to [NSPatternColor CGColor] in OS X 10.7?
I have the following code that works fine in OS X 10.8:
[viewLayer setBackgroundColor:[NSColor colorWithPatternImage:[NSImage imageNamed:@"editbackground.png"]].CGColor];
But when I used it on OS X ...
3
votes
5answers
2k views
Find out location of an executable file in Cocoa
The simple question is: how to find out the location of an executable file in a Cocoa application.
Remember that, in many Unix-like OS people use PATH environment to assign the preferred location ...
1
vote
1answer
20 views
how to move NSWindow to a particular screen?
In my app I need to be able to move my app's windows between the screens programmatically. I'm working on my MacBookPro and I'm connected to DELL monitor. So what I want to do is to have a method that ...
0
votes
2answers
563 views
Can't decrypt the AES cipher text
Edit2
This problem have been solved.The answer is about my other question.And thanks for Hot Licks.
------- Edit separate------------------------------------------------
Edit1: I am sure my ...
0
votes
0answers
13 views
Custom view for NSMenuItem in menu bar app and cursor keys
I am trying to create a simple menu bar application with Cocoa. There are lots of tutorials for it and i got it working - up to a certain point:
My NSStatusItem gets displayed in the status bar, my ...
0
votes
0answers
23 views
Reduce Choppy Scrolling in Objective-C?
I've read several other topics on stackoverflow about this, but none helped solve the issue. My app loads images from the web, and the user can scroll and the app will load more and more images. It ...





