iphone

Duplicating finger movements Objective C

Hi, I was wondering how I would go about duplicating finger movements with a moving image view object. - ie. you move your finger and a few centimetres away from it, an image moves around the screen, mimicking the movements of the finger I'm sorry that I have absolutely no idea how to do this and I'm sorry if I'm asking for a lot of co...

How to autorelease in Objective - c.

Hi, I'm not using Autorelease. When I use like this code, I don't know How to release BSPTile NSUInteger numbToday = [[dateFormatter stringFromDate:[NSDate date]] intValue]; BSPTileView *tile = [gridView.subviews objectAtIndex: 0]; tile.comparedValue = 0; BSPTileView is UIView Class. How to do ? please. ...

Which licenses are required for developing an iPhone application?

I see two possible licenses you might need for iPhone application development. The Company Developer and the Enterprise Developer. When might I need one or the other or both? ...

How strictly is Apple's new developer agreement actually enforced with regards to Monotouch?

Hi, I have a C# application which needs to be ported to several Smartphones. Monotouch looks like the best choice for the IPhone, if there wasn't section 3.1.3 in the new developer agreeement. Now the Monotouch website lists 3 Monotouch apps that were allowed to the App store after the new agreement was put in place. Was it just pure ...

viewing by Artist ID in the AppStore

is there a way to view all the apps by an artist in the AppStore? more specifically, within an iPhone context? (because these viewArtist?id= links work just fine in a web browser, which then launches iTunes... where they don't seem to work is on an actual iPhone device using the ITMS-style URLs) in my iPhone apps I've been using the f...

iTunes Connect uploading problem

Too bad that iTunes Connect changed its behavior recently. I'm providing an update to an existing app. I submitted new binary using the Loader without problem on the first try. Then I discovered that different from before, one has to reject the binaries in order to change screenshots. Too bad that the update is in the status of "In Revie...

iPhone Sdk: Is it possible to add an UIImageView as a file!?

Hi everyone, i was just wondering wether it is possible to add an uiimageview as a .m and .h class file because you can just choose a subclass from uiview or uitableviewcell in apple's templates and it than automatically creates the .m and .h files. Is there a way to do the same for an UIImageView or is it possible to somehow "turn" the ...

Remove UISearchBar on tableView click

Hi, I have a UISearchBar which is subviewed by another view when a button is pressed. When it loads, it looks like the following (minus the red scribbles): I would like to have the UISearchBar view be removed from the parent view controller when the tableView (the area with red scribbles) is clicked and is empty (no search has been m...

Is there a way to change page indicator dots color

Hi, I am newbie to iphone programming, I am trying to develop an app which uses page control. My view's background color is white and page controllers default one is also white, which makes page control invisible on my view so I have changed the back ground color of page control to make is visible. Now, the view appears patched and bad....

iPhone SDK: how to switch to previous view when video playback is over?

There is an application which uses several view controllers. In one of them there is a button which switches to a new view, and there, in viewDidLoad method, I launch a video playback. But when it's stopped, an empty view pops up instead of the previous view I'm working with. What is a proper way to switch back to the previous view aut...

how to declare a variable as extern in objectivec,so that i can access that in any view controller

i want to access the same variable in all view controllers .... ...

Changing Auriotouch Linear scale to logarithmic

I don't know if this is even possible to do, but thought I would ask, I suspect that if it is possible, it would be changed in the - (void) renderFFTToTex routine. Does anybody have any ideas about doing this or other suggestions that they could recommend? Thank you. ...

How to draw circles with animated edges in iPhone / Open GL ES

Could someone provide me with a start on the best way to go about this? What I want is circles within circles (for theoretical purpose let's say 3 circles). Each cirlces edge should be animated to mimic the aurora borealis (northern lights). They should flow and have subtle color changes. Any help would be greatly appreciated. Some gene...

Emulating iPhone and iPod Touch Inbox Edit Mode (Red Check Marks, Blue Background)

How can one emulate the UITableViewCell(s) used when bulk editing (All Inboxes > Edit) in the Mail App. Specifically, the hollow circles that fill with a red filling and white checkmark when selected (and the cell also changes to a blue tint). Is it possible do this with existing disclosure? Thanks. ...

Dynamically creating a uiImageView

Hi, I'm still very new to cocoa touch so please excuse any terminology that I may have got wrong. I have a bunch of images in my bundle consecutively named image0.png, image1.png etc... I have a picker in a viewcontroller and an instance variable that keeps track of the current row. When a user clicks a button I want to be able to cre...

didSelectViewController not being called when switching tabs manually

Hi - I have a tab bar interface with three tabs. I would like them to animate when I switch between them. I implemented didSelectViewController (and all the associated delegate stuff) which is called when I press the tabs but not when I switch tabs programmatically. The docs say as much, "In iOS v3.0 and later, the tab bar controll...

iphone-sdk: UIScrollView does not scroll!!

hi, i just can't get my scroll view to actually scroll.. everything displays fine except it just won't scroll..... here's my code: - (void)viewDidLoad { [super viewDidLoad]; UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 600)]; scrollView.contentSize = CGSizeMake(320, 600); scrollView.scrollEnabled...

Problem With PushNotification if you select No at the first time

hi everyone, As i said in the title of this thread, I have a problem with Push notification of my application. There is 2 cases : When the app asks you if you want push notification and you push OK, it's working great. This function : - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(N...

How do I make a UITableViewCell editable?

I've already added the edit button, but how do I make it so the cells can be deleted and moved around? Thanks. ...

How do you save CoreData with UIPickerView and then load CoreData with UITableView?

I have a multiview application using a tab bar to switch views. One is a pickerview while the other two are a table view and a view with 4 text fields (and one other table view that just contains instructions on how to use the app). I want to use core data to save selected rows in the picker view and also save strings that are entered in...