I want to download a 90MB sqlite file to my iphone app from the web. So I'll need to save the data to disk as it comes in to avoid having too much in memory. This is similar to this question -
http://stackoverflow.com/questions/648275/best-way-to-download-large-files-from-web-to-iphone-for-writing-to-disk
But I'd like to zip the file i...
hello,
i am trying to make a button that will solve my equation. This button should automatically find the answer of the textfield that is blank. Right now i have to manually click on the done button on the keypad in order to find the missing unknown.
i am using this code
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
if (...
I'm writing a sound library, for the iPhone, that uses OpenAL. The app generates a unique buffer id for each sound, during startup. The problem that I'm having is that OpenAL is unable to generate more than 1024 buffer ids.
I would've thought that the total number of buffer ids would've been limited by memory, not by some pre-determin...
Hi,
Can someone please help me write the following, without using dot notation:
self.bounds.size.width
I have tried [[[self bounds] size] width], but this results in an error. Any ideas?
...
Hey all,
I am having a heck of time loading asyncsocket into my iPad project so I can start using it. So far I added the AsyncSocket.h and .m classes and loaded CFNetwork.framework and made sure all the paths line up - but I'm getting 6522 errors as I try to build.
The first error is Block.h: no such file or directory.
Any suggestions...
Hello everybody!!
I'm new to Stack Overflow and have my first question.
I want to develop an application with a timetable. I've one UITableViewController and one CoreData entity called 'SchoolClass'. With arrow buttons I can switch between the days of a week. My problem is that I want to have all classes in the entity 'SchoolClass'. When...
Hi,
I just got my app approved....but realised there is a bug that will need a small fix. I do not want to release this app with the bug.
I am unsure how to get this fixed. If I submit another binary it will go through the review process again. I will also need to put a new version (1.1).
If I still have to submit a new version, can ...
I've been working on an app for quite a while and suddenly started to hit this error when the app tries to open a Core Data store. I hadn't made any changes to my data model or the data access code for over a month, so I don't think it can be anything that I'm doing wrong as far as interacting with Core Data. (Meaning, the URLs are ok,...
Hi,
I would like to simulate the SMS Bubbles of the iPhone for my own app. I found some nice code overhere (FYI): http://vimeo.com/8718829 . It is a restyled UITableView. Exactly what a wanted.
Here is the problem:
- The Tableview is filled with an array of messages
- It needs to be a NSMutable array because you want to add messages on...
I'm developing an iPhone app with a subscription model, and I saw this ios paypal library: apple takes 30% of revenue of everything, but Paypal takes significantly less for micropayments (maxing out at 10%). Naturally, I became interested.
I guess what I'm confused about is this: if apple wants everyone to use the in-app purchase librar...
I've read every post about the topic but I don't think I've found a reply to my question, that's driving me crazy.
I got a couple of php files, one stores data into mySQL db, another one read those data: I get data from all over the world and it seems that I succeed to store asiatic character in a right way, but when I try to read those...
hi,
I'm trying to add a button to the uitableviewcell and i just can't get it to work any suggestions what i'm doing wrong??
checkButton = [UIButton buttonWithType:UIButtonTypeCustom];
[checkButton setFrame:CGRectMake(0, 0, 30, 30)];
[checkButton setBackgroundImage:[[UIImage imageNamed:@"checked.png"] stretchableImageWithLeftCapWidth:10...
I have a question about the certificates that go with the VPN payload in a configuration profile.
What kind of certificate should it be..user, device, ipsec, identity? I don't know much about VPN or Certification Authorities but I have a Microsoft CA server which I can use to generate a certificate that should go in the profile with VPN...
I am trying to implement a zoom animation as in Safari. I have created a Window that contains a number of icons representing user documents. When the use clicks an icon, I would like to have it zoom then fill the screen with the target view.
The view structure is
Root View
Navigation View
Icon 1
...
Icon N
Content Wind...
I have an app where i have set the status bar to be hidden, in the plist.
At first all looks fine, but then in one place in my app i use presentModalViewController to show another view. (this view is to show the twitter login screen)
When i get out of the view (twitter login screen) and i get back in my app all my views move up.
After...
Hi all,
I've seen several posts with people having this issue but no solutions. Basically clicking a UITextField to show the keyboard for the first time eats up ~4mb of memory (according to the activity monitor) and I never get that memory back (and I need it back :P).
I know that UIKit will often take up a large chunk of memory for t...
I don't want to display my table view cells until the data has been loaded from an external source. I want to show an activity indicator over the table background while the data is loading. I can get the indicator to show by adding it as a subview to tableView, but I can't figure out how to hide the rows until they are ready to be displa...
I know this is kind of a vague question, but does anyone know how to get rid of choppy scrolling on a tableview?
Thanks
...
Instead of loading a PDF from the resources folder I would like to
load it from the documents directory. I have been trying to do this
for days but the CGPDFDocumentRef keeps returning NULL. Here is my
code:
// Get Documents Directory
NSArray *searchPaths =
NSSearchPathForDirectoriesInDomains(NSDocu...
I'm looking for some critique on my approach for storing the state of a bitmap editor for Android and iPhone mobile phones. Even a "Looks fine to me!" response would be great!
In the application, the current user document contains several bitmap layers (each maybe 1024 by 768 pixels) that can each be painted on. The basic requirements ...