1
vote
2answers
60 views
mac software development
i recently downloaded the iphone sdk which came with xcode. what i wanna know from ur experience is that aside from iphone development is app development for mac making any money from anyone? ive been …
0
votes
1answer
27 views
Rewriting a returned pointer to an output parameter
I'm playing around with the openSSL library and it requires me to brush up on pointers, and I'm having difficulty.
I have a objective-c method:
-(unsigned char *)encryptTake1:(unsigned char *)input …
0
votes
1answer
8 views
if parentViewContoller statement
I'm writing a program with a UITableView with and add button in the Navigation Bar which leads to an edit page. When you click on an item in the table, a view (rView) is pushed with information …
1
vote
2answers
83 views
How to write a GUI wrapper around a command line program in *C*?
System(); is able to call a program in PATH. How is it possible to send stdin read from e.g. a text field on a GUI to a command line program such as ftp, sftp ... with their own prompts?
System() …
0
votes
1answer
17 views
Core Data: entity properties getting mixed
I have an NSWindow which I use to create new records. After pressing the Add button, a certain method is called in which I do the following:
- (IBAction)addActionAddSheet:sender {
…
0
votes
4answers
46 views
Adding A Visual Timer To A View, iPhone
Hello all,
I have a view (splash screen) which displays for two minutes:
- (void)applicationDidFinishLaunching:(UIApplication *)application
{
[viewController showSplash];
}
- (void)showSplash // …
0
votes
2answers
23 views
Getting and Setting values from Core Data elements in Objective-C?
I've got a simple application with two entities:
Person:
Attributes:
name
Relationships:
nativeLanguage: (<<-> Language.natives)
nonNativeLanguage: (<<-> …
2
votes
4answers
39 views
Comparing two NSDates and ignoring the time component
What is the most efficient/recommended way of comparing two NSDates? I would like to be able to see if both dates are on the same day, irrespective of the time and have started writing some code that …
0
votes
3answers
36 views
Core Data + Core Animation/CALayer together??
I am making an Cocoa app with custom interfaces. So far I have implemented one version of the app using CALayer doing the rendering, which has been great given the hierarchical structure of CALayers, …
0
votes
1answer
15 views
iPhone SDK: viewDidLoad() sees an empty NSArray, but it’s populated in a delegate method (MGTwitterEngine)
This is probably obvious, but I'm a bit of a newbie and have spent hours trying to figure this out.
In viewDidLoad() I have a call to a function on an MGTwitterEngine object (custom object), with an …
0
votes
2answers
30 views
keyUp event heard?: Overridden NSView method
UPDATED: I'm now overriding the NSView keyUp method from a NSView subclass set to first responder like below, but am still not seeing evidence that it is being called.
@implementation svsView
- …
0
votes
5answers
50 views
Adding effects to a MP4 Video?
I'd like to do several things to a MP4 video, but I am not sure where to start.
Some things I'd like to do:
- Change the color of the video to Black & White, Sepia, etc.
- Add animations, such as …
0
votes
1answer
42 views
memory management: am i doing something wrong here?
Hi,
In a very small number of cases in my iphone app, I get a crash after the for loop in the code below:
ABAddressBookRef addressBookInit = ABAddressBookCreate();
CFMutableArrayRef abContacts =
…
2
votes
6answers
104 views
What is Best Approach to Learning iPhone App Dev?
I have basic C knowledge. I am trying to learn iPhone App Development.
Should I first learn ObjC for Mac, using the book by Stephen G. Kochan, then move to transforming these principles to iPhone …
0
votes
1answer
16 views
Is there a delegate method that gets called when the uer pressed “Retake” on the iPhone?
I have a UIImagePickerController subclass, and I would like to detect when the user presses the "retake" button.
Is that possible... what delegate method gets called? I looked at the docs but I …
