My iPhone application uses SQLITE's FTS3 functions (specifically MATCH and OFFSET). These are essential to my optimized searching algorithm. I implemented FTS3 by including three SQLITE source files, namely sqlite3.c, sqlite3.h and sqlite3ext.h in my project, under a group named SQLite. I removed from the Frameworks group my previous ref...
Hello experts!
I'm currently stuck in the distribution-profile-jungle and I can't find my way out.
I have launched an app to the App Store using my Distribution Profile, for various reasons I needed to wipe my keychain. When this was done I successfully updated the Development Profile by adding my newly created certificate. All is fine ...
I have something similar to this.
initMyclass {
if (self= [super init]) {
classMember = [[NSMutableArray alloc] init];
}
return self;
}
Instruments reports a leak there.
I'm leaking memory there ?
If not, xcode reports false memory leaks ?
Thanks.
...
Objective c | xcode | iphone question
Im building a model(data) class for a monetary transaction and have kind of a basic/noob question regarding pointers and object copying. The Transaction class I'm creating contains 4 or 5 ivars/properties that represent object type variables. now when I get the user entered data from the view contro...
I have a bunch of content files for my iPhone app that I generate via shell script. It takes way too long to be a part of the Xcode build process, so I run it periodically.
I don't want to have to continually add these files to my Xcode project in order to get them included my app resources folder. Is there a way to get Xcode to copy th...
Hello guys,
Strangest thing happening to me right now: GDB seems to launch after the app does.
Output in xcode terminal window looks like this:
[Session started at 2010-02-15 18:57:31 +0100.]
2010-02-15 18:57:35.822 CPPlayer[2890:207] CPLanguageManager.m:26 Initializing LanguageManager
2010-02-15 18:57:35.825 CPPlayer[2890:207] CPLang...
For some reason, the Clang Static Analyzer in my Xcode doesn't complain about anything. I made big memory management mistakes to try it (alloc and no release), but it never finds them and doesn't complain about them. Even after clean all targets and again Build and Analyze.
I was building for Simulator 3.1
Must I set that up specifical...
Please help with this issue of using NSFetchedResultsController.
I created an object of NSFetchedResultsController and I use it once in the method: tableView:cellForRowAtIndexPath: and when I try to execute the same code in the method tableView:didSelectRowAtIndexPath: I get EXC_BAD_ACCESS.
Here is the code of the 2 methods
- (UITable...
I'm trying to come up with a way to make it easy to switch out our "mock" data services and our live ones. Basically, we'll have live servers with real web services, but for whatever reason, a developer may want to load data from static files (file urls).
I figured I would solve this problem by creating categories that override the met...
I need to display a couple of view controllers (eg, login screen, registration screen etc). What's the best way to bring each screen up?
Currently for each screen that I'd like to display, I call a different method in the app delegate like this:
Code:
- (void) registerScreen
{
RegistrationViewController *reg = [[RegistrationViewContro...
How to tell Xcode to save the source code automatically without prompting, each time I hit on the build and run?
thanks in advance
...
When I start an Xcode project I drag in a blank readme.txt file that I use to take notes with while I'm figuring things out. The thing is, the file gets put in the app bundle at build time. Then I have to deselect it in the Detail view so that won't happen.
Is there a way to automatically exclude a file with a known name from every bui...
I have an iPhone & necessary certificates also, But don't know how to debug an application using xCode to iPhone.
EDIT
I have all these. I have mac mini & iPhone 3g. The question is - I don't know how to use all these certificates?
I want to debug an application - having shake handling code. That I can't debug on simulator. So I just wa...
Hi, everyone
I'm using Xcode in my development work. Sometime I debug my application and it report error via console window. Like example below:
2009-12-10 22:13:58.968 Sunrise Cam[1023:207] * Terminating app due to uncaught exception 'NSRangeException', reason: '* -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)'
2009-12-10 2...
I have a whole list of data that I need to replace some data with.
Each line starts with:
<select value="12345">
(where 12345 is different on each line)
and I want to replace it with:
@"
How do I do this, I can find the right find and replace algorithm to do this? It would really save me hours.
...
Hi,
I am developing an iphone application but I do not have an iphone.
But some of my friends have and they willing to try my application (and test a bit) for me.
All tutorils I have seen for deploying require to connect through usb.
I am already a regeistered developer (I got the licence).
Is there a way I can make an installation fi...
Hi,
I've got a problem that I couldn't solve with a deep search in different resources as most of the "similar" points out to be an error with Icon.png size, etc...
I've tried to upload my application after verifying that:
Correctly builds and run on my device
That my certificates are installed properly
That my certs / profiles are n...
Hi,
My question is quite simple (I think and hope). I would like to know what happens when I lock my phone.
I made a little clock-like app which should play and loop a sound at a given moment (lets say 18:00). But when I press the power button, and the phone locks, nothing happens at 18:00. When I press the power button again 18:05 and ...
Hi. I have many image/video files should be included as resource. Their size overs 30MB. So it takes to much time when I compile them. This slows down my development speed.
So I'm finding a way to compile those some resource files conditionally. Like #ifdef directive in source code.
It's good if it can be specified in source code file....
What does the iPhone use the thumbnails folder's .BTH(Bathy Recorder data) file for? How can you create it in XCode? What app can be used on a mac to read the contents?
...