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

3
votes
2answers
91 views
+100

Reminders.app two-way synchronisation logic

I want my app to synchronise with the Reminders.app. (my app utilizes Core Data) I've already done a prototype and it works, but there are some bugs I can't think through. Right now my sync ...
0
votes
0answers
12 views

Can Mac App store large icon be different form app icon?

On the iOS App Store developer can upload a large app icon for display on the app store through iTunes Connect as part of the process of updating the metadata. As such you can have a different icon ...
0
votes
1answer
28 views

instantiate class method issue while trying to resize and image

I am quite new to iOS development and its my first time trying to resize and image and dealing with class methods. I am following this post on how to resize an image. I placed the + ...
0
votes
2answers
41 views

Interface building - UIViews vs Images vs Core graphics vs PDF subclass

My app uses flat graphics, which mostly consists of lines and flat surfaces... Whats the best approach for building the UI? use PNG images as much as possible (like for the attached picture, the ...
0
votes
1answer
24 views

Shared NSColorPanel in one controller

I have shared NSControlPanel in one controller. I'm changing color to my NSTextView background and text foreground color. But when I'm changing color in panel for background, text color has been ...
1
vote
2answers
49 views

Execute AppleScript file in Mac app?

I'm looking for a way to execute an Applescript file from within a Mac App. I've made previous mac applications that use NSAppleScript *script = [[NSAppleScript alloc] initWithSource: @"MY_CODE"]];, ...
1
vote
1answer
35 views

How to migrate a core data data model when adding an abstract parent entity?

I created a new core data model version. The changes I made were I added a new entity called "FTASyncParent" which I set as an abstract entity. Then I set the parent entity of all my other entities to ...
0
votes
0answers
9 views

How to put a UIButton or UITableview ontop of a UIView / Kenburns for IOS

I found a plugin that animates a UIView . I want to add a button to the top of the Ken burns view I have tried a number of things but to no avail. I know I added the button to the view because I put ...
0
votes
0answers
31 views

NSOpenglContext flushBuffer not working in 3.2 application

I'm trying to write an OSX OpenGL app, but I'm running into trouble trying to swap buffers when using 3.2 profile. I "change" to the 3.2 profile with the following code in initWithFrame: self = ...
0
votes
0answers
9 views

NSTabView redraw content hidden tab

I have a following problem. I have a NSTabView with couple of tabs. In each tab I place a number of NSTextViews subcalassed so that they autoresize themselves vertically to fit the content. They also ...
0
votes
0answers
62 views

UICollectionView showing empty cells

I have a UICollectionView that displays an array of images. The images in the cell are being displayed as white boxes instead of the real image. I copied and pasted this code from another view and it ...
0
votes
1answer
37 views

Cocoa, output current App path

I am working on OS X application. In the code, I would like to output a path of the current Mac OS App to a variable for future use. So later I could read the files in the same folder. Could anyone ...
0
votes
1answer
84 views

Is fast enumeration exception-safe in files compiled with -fobjc-arc-exceptions?

I'm considering using exceptions for internal error handling inside a library I'm writing. If they are used, the library will be built with arc and f-objc-arc-exceptions enabled. One issue with obj-c ...
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 ...
0
votes
0answers
17 views

Commiting changes when app window looses focus

I have a view that edits an object. There are couple NSTextFields that are bound to the object with bindings through NSViewController's (Files owner in XIB) representedObject. Changes in text fields ...
-2
votes
0answers
18 views

How to implement a sidebar similar to the one in iTunes that will open and close with two finger gesture? [closed]

I am developing my first app for OS X (not iOS), and would like to implement a side bar (the kind that you see in iTunes, Finder, etc.) in the app that a user can easily slide open and close by simply ...
-6
votes
0answers
27 views

How to use Cocoa API into a c++ project? [duplicate]

I want to use Cocoa API into a c++ project.Is it possible?I want to include Cocoa.h in c++ project.
0
votes
2answers
53 views

componentsSeparatedByString:@“” (every character in array) [duplicate]

I want to add every Character in an NSArray ("123" -> To NSArray with "1","2","3"). I tested componentsSeparatedByString:@"" and componentsSeparatedByString:nil, but it doesn't work, can anyone ...
0
votes
2answers
43 views

Generic validation on input

I want to write a generic method to validate all the UIControls like NSTextField, NSTextView, etc. If any mandatory field is empty, a consolidated one alert should be shown with the first control as ...
0
votes
1answer
20 views

NSTextField text and background colour with/without focus

I just ran into an issue with resetting colours when an NSTextField was selected. The methods I'm using are - (void) setBackgroundColor:(NSColor *)aColor - (void) setTextColor:(NSColor *)aColor ...
0
votes
1answer
25 views

Setting NSFetchRequest resultType in the model editor has no effect

I just ran into an issue with fetch request templates created via the model editor in Xcode 4.6.2. I tried to change the Result Type setting in the Core Data inspector of a fetch request as in this ...
2
votes
0answers
41 views

Editable table view bound to NSArrayController bound to NSUserDefaultsController

I have a simple model Foo that represents a user preference and encapsulates an NSString and an NSNumber. I want to store an array of Foo’s in user defaults so that they persist between launches of ...
0
votes
1answer
34 views

Max value from core data attribute of different entities

I have three entities in my core data modal, A, B, C. Each has a createdAt date. What is the quickest way to access the most recent createdAt date, regardless of the entity type? Can I do something ...
0
votes
1answer
25 views

__NSCFString appendString: crash for NSMutableString in Cocoa

I have been facing this issue and I admit that I lack of some fundamental concepts of memory managements. I've not been able to solve this and trust me, I've been trying so many things out. In my ...
1
vote
1answer
56 views

Is it possible for a NSTimer to trigger before the specified time?

I have been using NSTimers to trigger certain events in my app which are time-sensitive (basically that have to happen when I tell them to happen with up to the second resolution). However, I have ...
2
votes
1answer
53 views

Access Kindle contents via Objective C

I'm looking for a way to access the contents of my kindle using objective-c. Specifically I'd like to: List the documents on the device Add and remove documents Manage collections (add and remove ...
0
votes
2answers
51 views

Why is NSClassFromString returning nil or not in these two cases?

I'm working with CocosBuilder 2.1 and Cocos2d-iPhone 2.0. I've gotten CocosBuilder to compile, and I'm having a weird problem when using their one-text-label example in my project. Here's the code in ...
0
votes
0answers
34 views

Objective-c : Error occurs when running app on OS X 10.5

my code does not like OS X 10.5 version. I set the base SDK to OS X 10.7, set development target to OS X 10.5, set each of xib file to OS X 10.5 too, and also fixed all the bugs in my code(I think, at ...
4
votes
2answers
50 views

Is it necessary to call NSManagedObjectContext save: for in-memory stores?

I'm using CoreData in my app, with a persistent store of type NSInMemoryStoreType. Is it ever necessary to call NSManagedObjectContext save: with this type of store? Does passing save: to ...
-1
votes
0answers
19 views

How put filelist to NSOutLineView

I have filelist with content like this: /temp/MediaFiles/0916A01.CD6F7B8E_4A514992A1.wav and i need to import the list into a tree Nsoutlineviev. If anyone can suggest something sensible - I ...
0
votes
1answer
34 views

How to open ppt file in microsoft power point outside the cocoa application

I'm developing a cocoa application. I have a .ppt file in my resources. I have to open the ppt file in microsoft power point, when we tap a button within my application. is it possible in cocoa using ...
1
vote
1answer
27 views

How can I detect a dragged window from another?

In my application I want to dynamically create windows (NSWindows) and have a special window (which is a NSWindow too and I call dump space) where I can drag the other windows for closing them. ...
0
votes
2answers
49 views

how to make the images downloading from web fastly?

i'm having array of image urls (say count=10), i have to display the images in NSCollectionView. but the images were took lot of time to display. what is lazy loading? i'm searching for mac osx not ...
0
votes
3answers
53 views

Loading retina images from a subdirectory

I'm using NSDrawNinePartImage() to draw a stretchable control. Since this of course requires nine separate images to draw the parts (plus some extras that are drawn over that), I have a directory full ...
0
votes
0answers
32 views

Properties of CALayer in layer-backed view won't display, and variable losing value in cocoa app

I have a collection view containing objects (cards) bound to a core data entity. Each of those cards has a type attribute that gets set from user input when the card is added. The class of the ...
0
votes
1answer
22 views

How can I determine the minimum NSRect for drawing an attributed string?

I cannot seem to find this and hope it is a FAQ somewhere. How can I get the minimum NSRect needed to draw an NSAttributed string on OS X? I am doing an overlay borderless window, but I want to ...
0
votes
2answers
41 views

MagicalRecords: Can't save simple relationship

I'm new to MagicalRecord so this may be a simple thing but I've looked everywhere for an answer and no one seems to be having my issue. I have a simple Core Data structure with one Parent leading to ...
0
votes
1answer
50 views

NSURLRequest with UTF8 password

Here is a method I've written to connect to a server and get a user auth token: + (void)getAuthTokenForUsername:(NSString *)username password:(NSString *)password ...
0
votes
2answers
73 views

How to disable the mouse hover expand effect on a NSTextView's NSScrollView scroller?

I have a NSTextView and here's the normal size of the scroller: And here's what happens when I hover the scroller of the textview: However, I don't want to have this 'expand' effect. How can I ...
0
votes
0answers
12 views

Allowing a child UIViewController to rotate freely from it's parent UIViewController

I'm looking to present a view controller capable of rotating to landscape orientation from a view controller that can only display in portrait. I'd like to animate it's presentation in such a way that ...
0
votes
0answers
26 views

Detect French Language Characters on Keydown Events [closed]

How can you detect when specific keys from a Mac French language keyboard are pressed? In particular, I'm trying to detect what would normally be the 7, 8, 9 keys on a US English keyboard. On a ...
1
vote
1answer
68 views

Regex stringByReplacingMatchesInString

I'm trying to remove any non-alphanumeric character within a string. I tried the following code snippet, but it is not replacing the appropriate character. NSString *theString = @"\"day's\""; ...
0
votes
2answers
47 views

Beginning NSMutableArray - Debug ignored

I am just learning objective-c. Hopefully this is a simple fix for anyone that has worked with NSMutableArrays before. Note: I have watched 3 videos on you tube and read 5 articles before asking ...
2
votes
0answers
31 views

Is it possible to clip a child NSWindow to its parent?

I have a borderless NSWindow that I'm adding as a child window to the main window of the app. In a particular mode the child window may lie partially outside the frame of the parent window then it ...
-2
votes
1answer
40 views

What is best way to stream video from server in ios [closed]

I am working on an ios application in which i have to play video from server. Please suggest me how it is possible in best efficient way. Thanks.
0
votes
3answers
51 views

Why a subView won't stay in the parent frame?

I have a view and inside it there's a UIImage. The image isn't static and I can move it around if I drag my finger around (using drag events) The problem is that sometimes the picture moves outside of ...
1
vote
2answers
33 views

Changing view repositions them at (0,0)

I created a simple window with the purpose of being something like a "Wizard" (I know Apple guidelines basically forbid you to, I tried to convince the customer, but whatever. It is just a simple ...
0
votes
1answer
46 views

How to create a static library in objective C and use it in pure c++ project?

I want to create a static library in objective C by using cocoa framework and use it in pure c++ project.Is it possible?
0
votes
0answers
51 views

Why does my Cocoa app only work one time?

I'm experienced with Applescript but fairly new to xcode. I'm using xcode 3.2.6. I have built an interface where data is entered into fields, then the button gets clicked, and the data gets sent to ...
0
votes
0answers
12 views

Pop up screen for Post to Flickr in Mac OS X 10.8 doesn't show description or url

The following code to post an image to Flickr doesn't show description or url: NSSharingService * flSharingService = [NSSharingService sharingServiceNamed:NSSharingServiceNamePostImageOnFlickr]; ...

1 2 3 4 5 503