0
votes
0answers
4 views
initWtihFrame: method for custom textfield not being called when created in a TableCellView
So I'm trying to create a custom NSTableView by subclassing NSTableCellView and a NSTextField inside of the cellview. I'm trying to write some init code in the initWithFrame: method for the ...
1
vote
1answer
23 views
Variable argument lists in Cocoa
I have a code like this :
- (NSArray *)executeSqlWithParameters:(NSString *)sql, ...
{
va_list argumentList;
va_start(argumentList, sql);
NSMutableArray *arguments = [NSMutableArray ...
0
votes
1answer
19 views
How to use SpaceBar button inside an application to invoke quick look
i had displayed some images in collectionview. now i want to select the image and press space button. If i pressed Space button , the image should quicklook in a seperate window. any idea?
0
votes
0answers
18 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
2answers
31 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
47 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
10 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
2answers
34 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
69 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
35 views
+50
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
19 views
How to insert Horizontal bar in NSCollectionView?
How to insert Horizontal bar in NScollectionview like as below
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
47 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
...
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 ...
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
1answer
30 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 ...
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 ...
1
vote
2answers
35 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 ...
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 ...
-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 ...
2
votes
1answer
32 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 ...
1
vote
0answers
32 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 ...
-5
votes
5answers
60 views
How to extract two numbers from an NSString? [closed]
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
...
0
votes
0answers
20 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 ...
1
vote
2answers
41 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 ...
2
votes
3answers
85 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
36 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 ...
0
votes
0answers
25 views
NSMenu Not connecting method of another class
-(void)rightMouseDown:(NSEvent *)theEvent
{
cvcont = [[CollectionViweItemSubClass alloc] init ];
NSMenu * m = [[NSMenu alloc] init];
//[cvcont openInFinder];----perfectly ...
-1
votes
2answers
60 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
0answers
18 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
vote
1answer
17 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 ...
0
votes
1answer
19 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 ...
0
votes
4answers
52 views
iOS 5 UIButton title showing with ellipsis
I have a problem regarding the UIButton title in iOS5. They are clipped and show like in this photo. I don't want them to be clipped, i want to show the full title.
In iOS6, they work perfectly.
...
1
vote
2answers
44 views
Perform commands in Mac application sandbox?
I need my application to perform a command while in the Sandbox. This is the code I have so far:
// Set up the task
NSTask *task = [[NSTask alloc] init];
[task setLaunchPath:@"/bin/bash"];
NSArray ...
0
votes
1answer
26 views
Select current button that is showing in UIScrollView programmatically
I have a UIScrollView with paging enabled. In every page I have a button. I want that with every swipe the button that is showing in the UIScrollView will be selected.
I'm guessing that the solution ...
0
votes
1answer
75 views
objc: strong property with NSString
I declare a strong property:
@property (strong) NSString *message;
And I set the message like:
self.message = [NSString stringWithFormat:@"xxxx %@",sth];
But it will crashed with message:
*** ...
-1
votes
1answer
67 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 ...
2
votes
1answer
105 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
1answer
47 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
49 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
43 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: ...
-6
votes
0answers
27 views
How convert a list of files in NSOutlineView [closed]
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
39 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
0answers
31 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 ...