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
1answer
30 views

Sending Images and data to PHP server-side

It,s my first time trying to send Images & Data to a PHP Server from an app, and I am quite confused as to what's the best way to achieve this. In my research, I came across AFNetworking library ...
0
votes
1answer
31 views

Issue with the new iTunes 11.0.3 and ScriptingBridge (specifically the 'playerPosition')

Two or three days ago Apple introduced a new updated for iTunes: a new miniplayer, a new player time bar, etc... And I thought: "sweet!". But I found a new issue with it, and here's my problem: A long ...
1
vote
2answers
24 views

Exception `-[NSConcreteFileHandle readDataOfLength:]: Bad file descriptor` when running a NSUserUnixTask

I'm using NSUserUnixTask to run an unsandboxed NSTask on my sandboxed app. However, my code hangs on calls to [NSFileHandle readDataToEndOfFile]. If I remove those calls it works perfectly. If I ...
0
votes
4answers
38 views

How to create a UITableCell that has multiple subtitles

I came across this design image online and I am really puzzled on how could I make a UITableCell that has multiple subtitles and allows me to customised them in the way shown by the picture. My ...
0
votes
1answer
25 views

Right To Left Push animation results in corrupted navigation bar

I'm subclassing my UINavigationController to perform a push from right to left (not normal behavior) with UIRTLNavigationController.m I've added at the bottom of this question and get these warnings: ...
2
votes
3answers
70 views

NSNumber returning different value than the original int

I am quite new to objective-c and I am trying to convert an int into a NSNumber so that I can save it into Core-Data. I've the following piece of code (index is an NSInteger) - (void) ...
-5
votes
0answers
23 views

How convert a list of files in NSOutlineView

Suggest a way to convert a list of files to folders in NSOutlineView Angel/Source/Video/130313/Camera_B/B239R2VU/B239C001_130313_R2VU.mov ...
1
vote
1answer
31 views

How to find monitor count in mac os by Cocoa?

I want to find count of monitor in mac OS by Cocoa.I can not use carbon.This code written in carbon but i want to do it in Cocoa framework. CGDisplayCount dspCount; CGError err ; err = ...
0
votes
1answer
22 views

Steps to convert a new xcode cocoa project using 1 controller per nib

I want to start off my new xcode project using 1 nib per controller. By default it seems xcode creates: 1. delegate .h/.m 2. MainMenu.xib And looking at the targets for the project, I see that the ...
0
votes
0answers
21 views

Need help drawing OpenGL Triangle using mouseDown event in Cocoa

so this is the first time I've ever programmed in Xcode or Objective C (some prior experience in Java and Python) and for my final project in my senior high school computer science course, I wanted to ...
0
votes
1answer
12 views

Overlay View using Frameworks in iOS

I have created a framework (static library) that presents an overlay view on top of the calling delegate. It does so with the following code: [[[self delegate] view] addSubview:overlay.view]; I ...
0
votes
1answer
29 views

What is the time scale portion of a CMTime?

I've been looking at the documentation associated with creating CMTimes. All the functions (CMTimeMake(), CMTimeMakeWithSeconds(), etc.) take a second parameter called preferredTimeSale. Can someone ...
0
votes
2answers
50 views

Is the main Grand Central Dispatch queue serial or concurrent?

Suppose I call dispatch_async() three times in order: dispatch_async(dispatch_get_main_queue(), ^{ [self doOne]; }); // some code here ...
1
vote
1answer
28 views

How to make the NSAlert's 2nd button the return button?

I'd like to make something like this NSAlert: As you can see, the 'return' button is the second one. How can I do this? Here's an example of the code that I use to create my NSAlert, but the first ...
0
votes
3answers
42 views

dipatch_async releases local variable

I did not find any suitable answers on the web, so I post my question here. __block int test = 1; dispatch_async(dispatch_get_main_queue(), ^{ test = 2; }); NSLog(@"%i",test); This code will ...
0
votes
1answer
46 views

What is the difference between self.managedObjectContext and managedObjectInstance.managedObjectContext?

So, I have the CoreData entities Book, Bookmark, Highlight. A book contains information about the book and an NSSet of Bookmarks. I want to delete the bookmarks present in one book and then ...
0
votes
1answer
25 views

Custom NSTextFieldCell for NSOutlineView

I am wondering how to draw a NSTextFieldCell like the one in NetNewsWire. I have already subclassed a NSTextFieldCell for the group cell and specified it in my PXSourceList's dataCellForItem. The ...
1
vote
0answers
20 views

MacOSX 10.8 , xcode 4.6.1 error Cocoa: “Color type user defined runtime attributes on OS X versions prior to 10.7”

I got a warning in Xcode 4.6.1/Mac OSX 10.8 when I try to open an Xib file which used to work well in Xcode 3.x/ Mac OSX 10.7 "The file "MQMPlugIn.xib" has a dependency on an Interface Builder 3 ...
0
votes
1answer
29 views

Getting Seconds interval between NSDate, but get always zero seconds

I want to get diff seconds between NSDate. I used [NSDate timeIntervalSinceDate] methods, but it returns always zero. Below is my code. NSLog(@"sent date : %@", message.sentDate); NSLog(@"prev: %@", ...
0
votes
1answer
39 views

design & logic - Most efficient way to save reordered UITable rows

The blue Table is called Routine and the other one is called Exercise. Routine.exercise has a Many-to-Many relationship with Exercise.routine. I have a UITableView that the user can re-arrange the ...
0
votes
0answers
23 views

core data sometimes got crash unable to open database

on osx 10.8.3 on large data sets (like 2.5G) i got sometimes that crash: After some investigating i got that this may be because i got opened files limit in my app. Bu i have no idea how to fix it, i ...
0
votes
1answer
18 views

Drawing NSView and adding subviews

I'm trying to make a custom NSView subclass. It does some drawing inside drawRect method. It also needs to have subviews(a couple of NSTextField s). So my question is should I add these NSTextFields ...
1
vote
1answer
29 views

When disabling GL_DEPTH_TEST, textures disappear

Okay so I have this fully working scene, where there is a vinyl player on a shelf with speakers. Everything works (models and textures using GLM, interface using Mac-Cocoa). What I am implementing ...
0
votes
0answers
27 views

How to pass Login With Google Process in Cocoa WebView

I am developing a cocoa app for Mac OSX. It's a basic browser application and I use webview component. In the page I want to connect, there is standard Login with Google Account button in order to ...
0
votes
0answers
8 views

NSRuleEditor handle return key?

When using a NSRuleEditor I would like to perform an action when the user hits the return key inside of a text field. My thought was that I could enumerate the templateRows find the UI component and ...
0
votes
1answer
22 views

State Change Monitoring

I would like to know if there are any apple Xcode APIs for monitoring state changes before I attempt to build my own. The app I work on changes out several View Controllers. Each controller can have a ...
0
votes
1answer
22 views

Afnetworking call doesn't seem to be execute

In my applications appdelegate, I am making an api call using afnetworking just to test things out, and I don't see anything in the logs. Not sure why it isn't working: - ...
1
vote
1answer
13 views

Sandboxing and security-scoped bookmarks

I'm writing an app which tracks disk usage. For that I let the user select drives (represented as URLs starting with /volume). I save the info using core data. Now I'd like to implement sandboxing and ...
0
votes
1answer
26 views

Mac application bundle ID not changing

I am trying to change my Mac's app ID, but it's simply not being updated! I changed the plist, however, when I run the game center code, I get his: NSUnderlyingError=0x1013a1a50 "The operation ...
1
vote
0answers
15 views

NSURLBookmarkCreationPreferFileIDResolution has no effect

I'm trying to create a Bookmark that locates a file even after it's been moved or renamed. Here I create & store a Bookmark for ~/Desktop/file.txt: - (void) writeBookmark { NSURL* ...
0
votes
0answers
12 views

Getting the CMD+SHIFT+4 screenshot image data from the system Pasteboard

Never thought I would have a problem with that! When I press CMD+SHIFT+4 to make a selection from screen and copy the image to system clipboard, there seems to be no way to get this copied image data ...
0
votes
0answers
10 views

core data(possible in memory) locked my processes osx

on osx 10.8.3 i have sometime strange mistake (my app freezed sometimes as no responding with 72 threads). A sampler of process gives me a lot of processes, most of them bellow. Can you suggest any ...
1
vote
0answers
21 views

comboBoxWillPopUp never called

I've implemented the comboBoxWillPopUp delegate method, but it is never called when I open the NSComboBox's popup. Other delegate methods, such as comboBoxSelectionDidChange, implemented in the same ...
0
votes
1answer
24 views

Second toolbar like in Mail + Toolbar under a NSScrollView [duplicate]

I have searched google and SO but i can't seem to find my answer (which is strange) How do I create a second row in a toolbar like in Xcode and Apple Mail? Second: I really like to be able to ...
1
vote
0answers
23 views

objective-C dragging images into NSTextView subclass

I’ve created a Cocoa-made text editing application that mimicks TextEdit with some other features added. I use a subclass of NSTextView. My problem is, I can’t drag images (jpeg for example), into my ...
1
vote
1answer
54 views

ListView in Objective-C Cocoa

I used for some time the .net framework, especially Wpf. Now I need to develop an application for Os X using cocoa. In wpf I have the ListView object where each element can be what object I want. I ...
1
vote
1answer
64 views
+250

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 ...
0
votes
1answer
35 views

Is there a way to do 3D transforms with keypoints?

I've created a 3D cube view transition that does the following: Creates a layer container. Adds the current view in 2D space. Adds the next view to the right and rotated 90 degrees (like in a ...
0
votes
0answers
16 views

NSResponder not receiving keyUp event when Cmd ⌘ key held down

I'm using a custom subclass of NSView and receiving keyboard events through the keyDown/keyUp methods, everything works fine except when the "Cmd ⌘" key is pressed, keyDown events are fired as normal ...
1
vote
0answers
19 views

How to set color of more than one cell in NSTableView

I want to set color of multiple cells choosing from a color well. When I move to another cell,previous colors of the cells should be retained just like the excel features. How can I do that? Inside - ...
0
votes
0answers
7 views

Alpha mask partiel nsimageview

I have an NSImageview, which I need to reveal in parts as the users does an action. I was thinking that I could use an alpha mask to accomplish this, however I can't seem to figure out how to use it ...
1
vote
0answers
15 views

Can't find running applications when executing as root on OS X 10.7

I have a privileged helper tool running as root (blessed by SMJobBless) and I'm trying to obtain the process id of Finder. The code below works fine in OS X 10.8, but returns an empty array for ...
0
votes
0answers
14 views

Get an error while trying to configure JavaCV on mac : can't find Foundation.h

I'm trying to install and configure JavaCV on my mac following this link: http://askhackeryoda.blogspot.fr/2012/05/configure-javacv-on-mac-os-x.html But I'm stuck at the 3rd step, when I do sudo ...
0
votes
0answers
7 views

InAppStoreWindow, how to reposition the NSView in NSWindow's title bar when resize?

I'm using InAppStorewindow (https://github.com/indragiek/INAppStoreWindow) to cuztomize my NSWindows's title bar. What i'm trying to do is to add a logo (image) to my title bar in center position: ...
1
vote
2answers
25 views

Does EncodeInt64 & DecodeInt64 work for unsigned integers?

Quick question, when I'm using encoders and decoders and I have a line like the following... //.H File @property uint64 docGroup; //** declared in interface //.M file [aCoder ...
0
votes
1answer
33 views

Ramifications of choosing fmdb over core data

I'm just learning cocoa (desktop) development, and yes I have read over and over than core data is 95-99% of the time all you need. BUT, at least at a theoritical level, could someone explain to me ...
0
votes
1answer
25 views

How to group several windows together and place them into particular location on the screen?

I have 5 different windows in my app that are on the screen simultaneously. It really bothers me sometimes that they are spread out on the screen after I use the app for a while. So I want to make an ...
0
votes
1answer
11 views

setAspectRatio doesn't work until the window is resized

In my app I have a main window where I play some video using AVPlayer. In order to force a particular aspect ratio I'm using setAspectRatio: method. I placed it in my app's windowControllerDidLoadNib: ...
1
vote
1answer
12 views

CocoaPods: Linking with C++ symbols defined in libPods.a

I recently started working on a podSpec file that integrates levelDB into my projects. (https://github.com/iljaiwas/Podspecs/blob/master/LevelDBPodSpec/0.0.1/leveldb.podspec) However, when I ...
0
votes
1answer
14 views

Binding Cocoa NSComboBox value to object

Assuming I have an NSObject subclass representing a country, e.g. @interface CountryInfo : NSObject @property (nonatomic, retain) NSString *countryName; My model contains an NSMutableArray of ...

1 2 3 4 5 503