0
votes
2answers
40 views
How to create line chart in iphone application?
I am creating a budget application in iPhone. Budget for personal incomes & expenses.
Client's need is
I want to see line graph ( like stock market line report ).
Red line …
4
votes
2answers
23 views
XCode: Possible to auto-create stubs for methods required by Protocol interface?
Coming from an Eclipse / Java background, one of my favorite features is the ability to quickly stub out all the methods required by an interface. In Eclipse, I can choose 'Overri …
0
votes
0answers
18 views
iPhone plist file versions… Adding keys sometimes does not work.
I created an iPhone project using the Core Data template. Now when I try to change my plist file to "Status bar is initially hidden = YES" I can't find that key in my options. Inst …
0
votes
0answers
12 views
Replace Xcode’s Navigation template UITableViewController with a UIViewController and UITableView
Is there any simple way to replace a UITableViewController from Xcode's "Navigation based application" with Core Data with a UIViewController containing a UITableView?
I'm looking …
0
votes
1answer
26 views
Xcode beginner (from Eclipse to Xcode)
I want to learn Xcode in order to use its Obj-C, C, Java etc. project development facilities. I'm trying to start from the tasks I've done easily in Eclipse. For instance:
In Eclip …
0
votes
1answer
19 views
how to compare dates in iphone sdk?
i have two dates i want to compare which one is greater date how do i do this in objective-c?
0
votes
2answers
25 views
Connect iPhone App to PostgreSQL Using Libpq
I need to create an application for the iPhone that will connect to a PostgreSQL 8.4 database using libpq. The problem is I can't get a simple iPhone that links to libpq to compile …
1
vote
3answers
41 views
Memory leak log message while *compiling* with Xcode for the iPhone
When I compile my iPhone project (in the command line), the log output looks like:
2009-11-05 22:19:57.494 xcodebuild[51128:613] warning: compiler 'com.apple.compilers.llvm.clang. …
0
votes
0answers
11 views
why AVAudioplayer doesn’t stop/pause when viewWillDisappear?
I am using avaudioplayer in my app. on viewwilldisappear i want to pause/stop the sound and on viewwill appear i want to play sound again.how do i do this? i'm using this code on v …
0
votes
1answer
27 views
Why does instantiating a UIFont in an iphone unit test cause a crash?
I'm trying to unit test some iphone code that instantiates fonts. I've narrowed it down to the following crashing unit test:
#import "test.h"
#import <UIKit/UIKit.h>
@imp …
0
votes
0answers
18 views
Mac OS X port crashes in pthread_setspecific in glibstdc++ vsnprintf - how to troubleshoot?
I'm testing a Mac OS X port of my multithreaded server. It starts up, but it dies in vsnprintf soon after the first client request is taken by a worker thread.
It seems that vsnp …
0
votes
3answers
76 views
Declaration with no type…
I am confused.
I do this:
#include <vector>
// List iteration
typedef vector<registeredObject>::iterator iterator;
typedef vector<registeredObject>::const_iter …
1
vote
0answers
20 views
Forcing code signing refresh in Xcode
In our environment, we share resources across multiple projects and platforms. When building for iPhone, only a subset of those resources are needed. Since that subset is still c …
0
votes
2answers
29 views
how can I fix xcode compiling everything all the time ?
Hi,
I've started to use XCode and it seems to work, well, most of it.
The annoying thing is it compiles all the source files, even those that didn't change, each and every time.
…
-1
votes
2answers
29 views
Create a package in Xcode-Objective-C
Hi,
Can I know how to create a package in Xcode ( Objective-C ) like the Java packages. I do not find any direct way of creating a package. Is there any method to create a package …
