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.

learn more… | top users | synonyms

0
votes
0answers
12 views

how embed specific version of webkit in app

I don't know if it's possible, but I want to embed in my application a specific version of webkit. I can use the default version of webkit adding it as framework in xcode, but in this case, when the ...
0
votes
1answer
19 views

NSTable view based cell with transparent background

I would like to make my NSTableView cells have a transparent background so that it is possible to see the main view's background. I have set the NSScrollView's drawsBackground to no, and the ...
0
votes
1answer
14 views

How to completly restore a Edit menu in Cocoa or find missing Actions like Redo

I deleted the Edit menu from my cocoa app but now I need to restore it with all the voices. I tryed to copy it from another app but it lose all the Actions... so I found myself with all the voices of ...
0
votes
2answers
28 views

How to properly convert to a canonical string for searching in Cocoa?

I have a string field that I know that users will want to search on later. Inspired by the WWDC 2012 Core Data Best Practices session I plan to store a normalized version of the string into a separate ...
1
vote
2answers
46 views

SQLite Database table never created

I'm trying to create a SQLite Database but run into a problem that seems to derive from the table CONTACTS never being created (I get the error message 'Error while inserting 'no such table: CONTACTS' ...
0
votes
0answers
9 views

How to run RPC procedure specific methods in one delegate request method?

I'm following delegate pattern to deal with XML-RPC communication. Each request I make, ends up in the method implemented in my delegate class: - (void)request: (XMLRPCRequest *)request ...
0
votes
1answer
10 views

mouseMoved event stopping when mouse is down

I have implemented a custom NSView (marked as ) and am able to get mouseUp:, mouseDown: and mouseMoved: events. To this I have acceptsFirstResponder returning YES, and also call the following in ...
0
votes
1answer
10 views

NSView keyDown not called during drag and drop in Cocoa application

I have a cocoa application where i need to respond to keyDown events during dragging sessions in order to trigger other things. The keys are not modifiers only but can be any kind of key. The problem ...
1
vote
1answer
19 views

iOS : Tracking Asynchronous Connections with Blocks

I am doing a lot of URL requests (about 60 small images) and I have started to do them Asynchronously. My code adds another image (little downloading thing) and then sets a Request going. When the ...
0
votes
2answers
33 views

How do I stop the SearchBar to open on my UITableView instead of over my entire view?

Good morning Ladies and Gentlemen; I'm working on an App which main view consists of a MapView and a TableView, similar to the interface of the Foursquare-App. Now the problem I have is that when I ...
0
votes
0answers
19 views

How to move the mouse in Objective-c when the display is zoomed in?

I know that by using the following i am able to move the mouse smoothly over the screen: CGEventRef ourEvent = CGEventCreate(NULL); CGPoint currentPosition = CGEventGetLocation(ourEvent); CGFloat x ...
0
votes
1answer
12 views

How do I detect QTMovie stop playing?

I have done the following - once played a QTMovie (on Mountain Lion) and wanted to get notification when a movie ended. But the notification never got called! Can anybody tell me what have I done ...
0
votes
0answers
15 views

Updating NSOutlineView items

I have been trying unsuccessfully to edit and update items in a source List NSOutlineView, I’m not using a treecontroller but datasource and delegate. My understanding is that ...
0
votes
1answer
18 views

Switching back and forth between windows XCode interfaces

I am having a very difficult time switching between forms in Cocoa interfaces. From my initial form and its delegate, I can hide the initial window then load and display the second window with all ...
0
votes
1answer
68 views

Cocoa Application quit unexpectedly

I wrote an Objective-C Cocoa application which can open some unique file types defined by myself. If I run my application from Xcode and drag and drop one of these unique files on my running ...
1
vote
0answers
29 views

NSTokenField selection list shows empty space while scrolling

While using NSTokenField something strange is happening, as shown in the images below : As I type A, selection from popup is shown. I scrolled it Some more scroll, and it went below the ...
0
votes
0answers
18 views

How to insert Horizontal bar in NSCollectionView?

How to insert Horizontal bar in NScollectionview like as below
-3
votes
0answers
37 views

How to create mac apps with stunning user interface? [closed]

I have been learning xCode and it's great but the user interface of apps created is plain (standard apple app interface). What can be done to achieve beautiful user interface. Do I need to get some ...
0
votes
1answer
41 views

Using IBOutlet in child class (Cocoa OSX)

Ok, so I have a class named "AmazingClass" that I use to generate a sheet to save a file. In it there is an NSView with extra options. It works well, but now I want to have more windows with the same ...
0
votes
1answer
40 views

Removal of core data object does not nullify all of its relations?

I have an entity called Task which has a to-one relationship with the entities TaskTemplate and Occurrence. Both of these entities have to-many relationships with Tasks. Deletion rules are set to ...
1
vote
0answers
21 views

-(BOOL)trackMouse:inRect:ofView:untilMouseUp: Is never invoked

I have subclassed NSControl to get my custom control, have subclassed NSCell to get my custom cell, over overridden -(BOOL)trackMouse:inRect:ofView:untilMouseUp and necessary methods ...
0
votes
0answers
11 views

IBAction not yet called in the custom NSView in the iCarousel

I have a custom NSView which is having QTMovieView and play/pause NSButton. I am using iCarousel to show the projects in a coverflow type. The custom NSView is created using the nib file. The ...
0
votes
1answer
30 views

Time intervals chart

I'm a relatively new ios developer. I am developing an app for iphone and i need a free library to do a chart in which to display time intervals. The typical use of such a chart is to diplay different ...
1
vote
1answer
40 views

Can't code sign helper app properly

I'm trying to code sign my helper app. I've created a separate provisioning profile for it, it is valid and works. I can archive and export it for Mac App Store submission. However, when I run the ...
3
votes
2answers
52 views

CGImageCreateCopy vs. CGImageRetain

A CGImageRef doesn't appear to have any mutating operations. Copying a CGImageRef does not copy the CGDataProviderRef (determined through experimentation). So if CGImageRef is an immutable type, is ...
0
votes
1answer
9 views

How do you make QTMovie full screen when played?

How do you make QTMovie full screen when played? I have been trying to hunt around for a solution for this. The last response points to a document that has since been deprecated, is there an updated ...
0
votes
0answers
21 views

NSMatrix calling NSFormCell's methods on an NSTextFieldCell prototype

I created an NSMatrix with an NSTextFieldCell as its prototype. But when the view is added to a window and drawn, I get this error: -[NSTextFieldCell setTitleWidth:]: unrecognized selector sent to ...
0
votes
2answers
28 views

Application next to Spotlight

I am looking to create an application that I can keep next to Spotlight. Application like Dropbox, Mint, Alfred reside there and live through out the life of OS. Where should I start? Thanks in ...
1
vote
0answers
23 views

How to get the drag destination url when I drag item form NSCollectionView to Finder

I am developing a function that copy the file to Finder when I drag a NSCollectionViewItem to Finder,so I implement the following delegate: - (BOOL)collectionView:(NSCollectionView *)cv ...
0
votes
0answers
16 views

How to open external links to safari/chrome browser in Cocoa

I'm a newbie in Cocoa development. I have read about using WebPolicyDelegate. However, I can't seem to have it work the way it should. I want the app to open external links and have it launched in a ...
0
votes
0answers
24 views

Lazy Fetching & Maintaining a sorted NSArrayController

I've got a sample project at https://github.com/ericgorr/LazyFetching The setup is pretty straightforward. In my CoreData model, I have two entities: Shelf which has a name property and a to-many ...
0
votes
1answer
29 views

NSNumberFormatter interfering with NSString intValue

I have an NSForm that is being used to display content to the user. The form can either be updated via the application by connecting to an web hosted XML file or manually edited by the user. Through ...
1
vote
1answer
20 views

cmake generate Xcode project from existing sources

This is what i have, when i starting generation: iMac:IXCSoftswitch alex$ /usr/bin/cmake -G Xcode . -- CMAKE_SOURCE_DIR = /Users/alex/Desktop/ixc-v/IXCSoftswitch, CMAKE_BINARY_DIR = ...
0
votes
2answers
52 views

Increasing the space between header and table cell in iOS

So my UITableView has a header, which is the UIImageView shown, and comments below the image. I am trying to increase the space between the image and the comments table. (I have tried increasing ...
2
votes
1answer
27 views

Ownership of NSString returned by reference from NSScanner

Is the reference returned NSString from the methods scanString:intoString: scanCharactersFromSet:intoString: scanUpToString:intoString: scanUpToCharactersFromSet:intoString: in the NSScanner class ...
1
vote
1answer
39 views

how to set default font and font style in cocoa app?

My app has all different kind of NSViews, including NSTabView, NSButton, NSTextField, NSPopupButton and so on. I would like to change all display text to a certain font and with certain font style. ...
1
vote
1answer
32 views

How to force all subviews of NSSplitView to be visible at startup?

I am making a UI completely programmatically. I made a NSWindow, and attached a NSSplitView. The problem is first subview of the split-view always become collapsed when window shows up at program ...
0
votes
1answer
56 views

Objective c: Bad access error when using performSelectorOnMainThread

Here is the problem. I have a method called -(void)searchingInBackground which is running in background (performSelectorInBackground). In this method, I have couple of different threads which are ...
0
votes
2answers
10 views

NSView invisible unless I override drawRect, and then it gets clipped even if setMasksToBounds is NO on superview's layer

Trying to add a NSView to an existing NSView, but I'm failing miserably for some strange reason. I'm doing this: _resizeView = [[NSView alloc] initWithFrame:NSMakeRect(0, 0, 10, 10)]; ...
2
votes
1answer
28 views

Open document by dropping it on document-based application icon in OS X

I'm making a document-based application where documents are application bundles. I can open them through "File → Open" menu fine. But when I try to drop them on the Dock icon they get rejected and the ...
0
votes
1answer
13 views

How to save a image from web using its own filename

i'm having a array of web urls redirecting images. Is it possible to download images directly and save it using its default file name.
0
votes
0answers
12 views

Error on RegisterEventHotKey on Mountain lion

I am creating an application for MAC App Store. That will magnify the content under application's main window.I am using keyboard shortcuts to perform some operations (eg. Change shape, Window size, ...
1
vote
2answers
34 views

Image download was not in proper order

NSOperationQueue *queue = [NSOperationQueue new]; NSInvocationOperation *operation; for(int k=0; k<[imageArray count]; k++) { operation = [[NSInvocationOperation alloc] initWithTarget:self ...
0
votes
0answers
39 views

Renew/change the IP address of an iPhone programatically in iOS 6.1

I am developing an iPad/iPhone app for my own personal use on my own devices (i.e. not for submission to the App Store). My app needs to change the IP addresses assigned to the cellular data (not ...
1
vote
1answer
32 views

Created recessed NSButton not displayed correctly

I just created some basic NSRecessedBezelStyle NSButton programmatically, the codes are listed below: NSButton *btn = [[NSButton alloc] initWithFrame:NSMakeRect(80 + 110 * i, 11, 100, 19)]; [btn ...
4
votes
3answers
63 views

How can I show my app is not a keylogger?

I've created a simple Mac app that gives you statistics on your working behavior over time. For example, your average words per minute, what language you are typing in, usage of the delete key, etc. ...
1
vote
2answers
46 views

Navigating to a main ViewController that is already loaded without loading it again

I have a main view controller that loads some data from api, from there I move to another screen which shows details for a particular deal. I want to go back to the main controller, but when I use ...
0
votes
1answer
18 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
44 views

Reorder NSString, extern NSString *const hello; [closed]

I am using the Aviary SDK for an app and am confused about how to re-order the strings. This key allows developers to customize the visibility of, and order in which tools appear in the SDK ...
1
vote
0answers
31 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 ...

1 2 3 4 5 504