sdk

iPhone SDK page flip and Page curl

I got the page flips and curls to work. I'll describe what happens... I build and Go The App opens in simulator I press a button and the page curls to page 2... but when it gets to page 2 the page drops down a bit. Why does this happen? ...

IPhone SDK removal of NSLog causes NSArray to be undeclared !

I have a working application I'm about to distribute and am tidying up NSLog statements in it. When I remove NSLog from from a "case" statement, the NSArray declared within the "case" statement errors as Expected expression before AND undeclared. Anybody any idea why this may be? This is happening on all case statements in my app where I...

stream video from the server . {iPhone SDK}

hi . i trying to stream video with static IP : http://38.117.88.148/GemTVLink via iphone . can you show me some information and how could implement this > ? i see apple video stream app and it seems can show only .mp4 movie ? iam i right !? i want my app load the http addres and play movie thats it . this link works on meida player ! ...

Android SDK Setup.exe will not run

Running XP sp3 when i click SDK Setup.exe command line promt comes up and goes away fast and nothing else happens is there a fix for this ? ...

iPhone app runs on iPad simulator, but the background is inverted!!

Hi all, i've installed new sdk 3.2 pre-release wich have iPad simulator, i have tried to launch an iPhone app created by me in iPad simulator; the main view of this app has an image as background; when launch it on iPad simulator this background(self.background = [[UImage..... ) it comes inverted, from top to bottom. Any idea?? thanks ...

Scroll text in a view with navigation controller

hi everybody! i'm italian so sorry for my bad english :D so... i've this simple program: a navigation controller controll two view (the first view and another inside a UIViewController). I want to scroll the text (and images) in my second view. how can i do that? have i to use uiscrollview? how? i'm a newbie :P this is my program: http...

How can I properly implement JPImagePickerController in my code?

I've had some issues trying to get the JPImagePickerController working in my code. Anyone find any guides on how to do it (I can't find a single one)? Thanks. ...

When do I initialize a view controller with initWithNibName?

I'm coding in Objective-C for the iPhone. I was wondering when I use init: and when I use initWithNibName:bundle: when creating a view controller. I can't really find an answer to this question. Thanks. ...

to submit iPhone application to app store do we need our own server in all cases?

Hello all: i read this overview of the StoreKit API but could not understand the role of developer's server exactly, will you please elaborate the role and is it mandatory to have if i need to submit an application ? Thanks in advance.. ...

Selecting OSX SDK version in Eclipse and Makefiles

I have a development Mac running 10.5. This causes my apps to not work in 10.4 (Google "_nsdefaultrunloopmode tiger"). I read the solution is to install the 10.4 SDK and compile against that. I have it installed (at least I have /Developer/SDKs/MacOSX10.4u.sdk) Now I can't find a way to actually use that - I'm doing two things: 1) Comp...

How can I share common methods between view controllers?

I have an iPhone app, it has two separate MKMapView components in different views, however, many of the actions I will perform with the two views are the same. How do I write the methods once but use them in both view controllers? An example is I have a button which is disabled in both views until the user performs a certain action, I ...

Can two different Windows SDK versions coexist on the same machine without conflict?

Hello, I have a machine with Vsiual Studio 2005 and Visual Studio 2008 and Windows SDK version 6.1 (Windows Vista). I am planning to install the latest SDK (Windows 7 and .Net 3.5 Service Pack1), but the MSDN Comptabilty document (http://msdn.microsoft.com/en-us/windows/dd146047.aspx) indicates that the latest SDK is not recommended with...

Transparent Buttons in iPhone SDK

Hello! I'm trying to create a transparent button in my iPhone app -- to create an Easter Egg of sorts. How would I go about setting the button to be transparent without touching the alpha (when alpha = 0.0 on a UIButton, it no longer responds to touch)? Thanks. :) ...

iPhone SDK 3.2 beta and iPhone SDK 3.1.2

Hello, Currently I am using iPhone SDK 3.1.2 for developing iPhone apps. Apple has recently released iPhone SDK 3.2 beta and I want to try my hands with it. But my problem is that I want to use both versions of SDKs, 3.1.2 since I am currently developing apps and uploading on app store, 3.2 beta to start trying the new version (but Ap...

UITableView scroll direction

Is there anyway to know if a UITableView is scrolling towards the upper or the lower end of the table ? ...

iPhone SQLite question.

I have an sqlite table in my game that keeps track of scores. How do I make one of the columns track scores in ascending order instead of descending order? ...

How do i stop NSXMLParser?

what am i doing wrong? i cant get the xmlparser to stop parsing. i set a breakpoint on [xmlParser abortParsing]; and it gets run. but so does everything after if(success) here is my code: -(void)viewDidLoad{ [NSThread detachNewThreadSelector:@selector(loadstuff)toTarget:self withObject:nil]; } -(void)loadstuff{ NSAutoreleasePool *...

iPhone sqlite desc vs asc???

How come in my code when i use @"select Score from tblMed order by Score desc limit 10" everything works fine, but when I change "desc" to "asc" the scores don't show up??? ...

When should I make a referencing outlet for a UI control and when just an event? (iPhone SDK)

I have some code that works without having referencing outlets for the controls - just event ties in Interface Builder. Is this ok and is a referencing outlet only necessary to change the state of a UI control? Thanks. ...

Why isn't my nib interfacing with my code?

Can someone help me figure out this weird issue? None of my button actions are getting called. http://drop.io/cpyexk7 ...