Questions tagged [ios-4.2]

For issues relating to using iOS, version 4.2.

iOS is an operating system for mobile devices developed by Apple Inc that they currently use in their iPhone, iPod touch and iPad devices. It is optimized for portable (including handheld) hardware with touch interfaces.

See also for further information.

310 questions
2
votes
1 answer

TabelViewController with story board in ios5

I have started working with story board ,a new feature in iOS 5,so I started with a tabbed application,then I added a table view controller and filled the cells with some dummy data,now,the table has 4 cells,now on click of each cell,I want to open…
Ranjit
  • 4,576
  • 11
  • 62
  • 121
2
votes
2 answers

UIColor -initWithRed:green:blue:alpha: memory leak?

I have this situation: UIColor *color = [[UIColor alloc] initWithRed:0/255.f green:156/255.f blue:255/255.f alpha:1]; self.lightBlue = color; color = nil; [color release]; And receive memoery leak in UIColor *color = [[UIColor alloc]…
donjordano
  • 346
  • 3
  • 12
2
votes
3 answers

UITableView with live data also has user interaction same time

I'm working on proof of concept project. That is using a UITableView to display some live data. "live data" is beeing merging with sensor information on real time in the the app. After UITableView rendered with some NSMutableArray data, that…
fyasar
  • 3,996
  • 2
  • 42
  • 55
2
votes
1 answer

How to set Time Range in UIDatePickerModeTime

Hello friends I am trying to set the Time Range Of the DatePicker in UIDatePickerModeTime,as we have MaxDate and MinDate,whether its possible to set Mintime and Maxtime selected by user,, Suppose I want the user to select the time between 16:00 to…
Ranjit
  • 4,576
  • 11
  • 62
  • 121
2
votes
2 answers

Xcode 4.2 Beta and iOS 4.2

I am having a problem with developing a new project using Xcode 4.2 (the beta) and deploying this onto an iPod touch running iOS 4.2.1. I told xcode that the built target was iOS 4.2, but it does not seem to want to run on it at all. The project…
MZimmerman6
  • 8,445
  • 10
  • 40
  • 70
2
votes
1 answer

How show an full screen image in a seperate viewcontrller from a small image in webviewer (like facebook)?

HI stackoverflow friends I have an web app in iphone ,in which a lots of small images are loaded from webserver in a webview ,when I click on the image the image opens in a new viewcontroller with a navigation like facebook. How can I do this? give…
Asish AP
  • 4,421
  • 2
  • 28
  • 50
2
votes
2 answers

Running application in background like google latitude

I'm working nowadays on an application that tracking the user location. I want this application to run even when it's not in the task list (double click on the home button doesn't show it). Like google latitude, the application is not running in…
Elad
  • 479
  • 3
  • 11
  • 21
2
votes
2 answers

Issue with save file to Documents NSMutableArray with NSObjects

I'm a newbie iOS developer. I wrote a small application that save an NSMutableArray array with my objects that derived from NSObject. Application do the save but the file isn't created in document directory and application can't read. this issue is…
Elad
  • 479
  • 3
  • 11
  • 21
2
votes
1 answer

@media only screen and (orientation:portrait){} not working in iOS Emulator?

@media only screen and (orientation:portrait){} not working in iOS Emulator? Any solution to make it work? I'm using iOS emulator for ipad. and Emulator is in Portrait mode But it's not taking whatever is written inside @media only screen and…
Jitendra Vyas
  • 148,487
  • 229
  • 573
  • 852
2
votes
2 answers

How to perform Image Editing in iPhone application?

I have to perform some image editing operation like cropping, gray scale, rotating image, Polaroid-effects etc. From these I found some of functionality like cropping, gray scale. But from this we have to manage separate functions iN there. Is…
AJPatel
  • 2,291
  • 23
  • 42
2
votes
3 answers

Displaying UI elements such as alerts from multiple threads

I have a simple application which was working fine until I added some code which launches a new thread at some point and then tries to show an alert from that thread. Now, the app crashes whenever the code for showing the alert is hit. UIAlertView *…
341008
  • 9,862
  • 11
  • 52
  • 84
2
votes
1 answer

sqlite on iOS 4.3.x much slower than 4.2.1

Why is sqlite on iOS 4.3.x much slower than 4.2.1. The same sqlite query (select query with 3 joins) gives the results much faster on 4.2.1 than 4.3.x. Is there any particular reason for the same? Or is it a bug on Apple's side? Thanks in advance.
Anupam Godbole
  • 415
  • 3
  • 13
2
votes
1 answer

Access BPM field on a song (MPMediaItemPropertyBeatsPerMinute not working)

I'm building an application that has a media player in it (I'm using iOS SDK 4.2). While a given song is playing, I can access pretty much every one of the properties, but I can not access MPMediaItemPropertyBeatsPerMinute. It returns null every…
venables
  • 2,584
  • 2
  • 17
  • 17
2
votes
3 answers

How to build app for flagging emails in iPhone?

Unfortunately, the iPhone cannot flag email messages for followups as it does in Outlook or Gmail. Everywhere I search, people are griping about this with no solution except for moving emails in a 'follow up folder', which is lame because I use…
TruMan1
  • 33,665
  • 59
  • 184
  • 335
2
votes
1 answer

How to get a list of in-app purchases from the Apple server

I am developing an iPhone app which provides in-app purchases. However, after creating a product ID for an in-app purchase, I must manually update the list in either the client, or on a custom server. This seems a little odd. Is their any web…
jenie
  • 21
  • 1
  • 3