Tagged Questions
0
votes
2answers
104 views
Upgrading iOS Application
I want to upgrade my existing apps to iOS 5.0 and above.
I want suggestions and detailed guide line for main points.
what changes I should make in my existing code to make it fully
compatible as ...
1
vote
0answers
44 views
Code crashing with following error
My application is using apple connect library. I started my application 8 hours ago and then again when I switched to my application from background to foreground it hangs and shows the following ...
0
votes
3answers
52 views
Xcode different View for iOS 4 [closed]
I`m using a storyboard in my app, and storyboards requires iOS 5.
What happened when an iOS 4 Device opens my app?
Can I put code in viewDidLoad for iOS 4 Devices?
I want to create a specific View ...
0
votes
2answers
277 views
StopUpdatingLocation method not working for iOS5
I am working on map application,
I am try to use [locationManager stopUpdatingLocation]; method to stop the Location services.
It seems that it works fine in iOS4.3 but in iOS5, it's not working.
...
1
vote
1answer
95 views
UIViewController does not release memory the first time
Got the weirdest thing happening ... I have a pretty complex UIViewController subclass of which I'm loading through a NIB file.
I push the view by simply doing the following:
SecondViewController2 ...
1
vote
1answer
146 views
custom UITableViewCell height width provies wrong value.
I have designed UITableViewCell in .xib, and its height and width is :
Retrieving from the Xcode ->Show the size inspector.
Width : 358 Height : 562
TableView Delegate:
- ...
2
votes
1answer
1k views
Circular Progress Bars in IOS
I want to create a circular progress bar like the following:
How can I do that using Objective-C and Cocoa?
How I started doing it was creating a UIView and editing the drawRect, but I am bit lost. ...
0
votes
0answers
107 views
Crazy Rocking Tab bars and the Iphone SDK
I have the following code in the AppDelegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] ...
2
votes
2answers
166 views
UIBarButtonItem tintColor iOS4
I am using following code to create a UIBarButtonItem:
UIBarButtonItem* searchBarButton = [[[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"search_picto"] ...
0
votes
0answers
60 views
UITableView not scrolling with iOS 4
UITableView not scrolling after scrollToRowAtIndexPath:currentIndex atScrollPosition:UITableViewScrollPositionMiddle animated:YES on device with iOS 4
I need to use method, which calls ...
0
votes
0answers
246 views
always! On iOS 6.0 and on 3G network NSURLConnection is getting failed with didFailWithError?
I checked on stackOverFlow and other, that on didReceiveData:, didReceiveResponse: are available with NSURLConnectionDataDelegate upon Version 4.3. From version 2.3 to 4.3 they are available in ...
2
votes
2answers
279 views
Splash Screen in iOS Multitasking
In what cases would iOS application would shows splash screen i.e., Default image (other than App Launch) ?
I am forcing a view controller to support landscape mode only
- ...
0
votes
3answers
516 views
How can i pass data back to parent view controller. am using addSubView method to show child view
How can i pass data back to parent view controller. im using addSubView method to show child view.
addFields = [[AddFields alloc] initWithNibName:@"AddFields" bundle:nil];
[self.view ...
-1
votes
3answers
93 views
Does anyone know whats the issue with this code
-(NSData *) decryptData:(NSData *) Data
{
NSData *iv;
NSData *salt;
NSError *error;
NSData *stringData = Data;
NSInputStream *inpStream = [[NSInputStream alloc] initWithData:stringData];
bool IVData ...
3
votes
1answer
381 views
Error in GET on https ?? Can't set NSLocalizedRecoverySuggestion
NSURL *url = [NSURL URLWithString:@"https://myUrlString.com"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
NSURLResponse *responseurl;
NSError *err;
NSData *data = ...
-2
votes
2answers
269 views
iOS 4.3 doesn't show label on scroll view
The Label is on the center of the screen (or below) and iphone 4.3 doesn't show it.
But iphone with iOS 5.0 shows. All made in IB.
UPD: (the code)
- (id)initWithNibName:(NSString *)nibNameOrNil ...
-1
votes
1answer
95 views
How to send SMS to more than one recipient with one time user interaction on iPhone?
Does anybody know, If it's possible, and how to send SMS to more than one recipient with one time user interaction. Which means, Our application should send SMS to a list of numbers with static ...
1
vote
2answers
730 views
Background Task with NSOperation and NSOperationQueue iOS
I want to upload some files which should continue even if the application goes into background.
Currently I am retrieving the files from the DB and than adding it to the Queue via NSOperation which ...
0
votes
1answer
206 views
Overlapping table cells animation
I made a table with custom cells. For every cell I've created an animation which move current clicked cell up. Problem is in current animated cell which has for example index row 2 and goes back into ...
0
votes
1answer
141 views
UISplitViewController display the popover from right instead of left
So I've implemented an iPad application it has a UISplitView implemented. i'm using the slide gesture to show the popover controller instead of a bar button. the problem is that by default the popover ...
1
vote
2answers
182 views
Why is checking [NSMetadataQuery class] crashing on iOS 4.2.1?
I'm attempting to use this approach, described by Marco Arment, for checking if a class exists before using it. With the correct settings, classes are automatically weak-linked when it's appropriate. ...
1
vote
3answers
107 views
Is there a way to detect the running app, while my app is in the background in ios?
I need to detect the running application when my ios app is in the background. Basically I need to know if the user launched the Safari app?
Is there any way to do this? as I know when an app is in ...
1
vote
2answers
678 views
UIImage resizing not working properly
So I've been trying to figure out what I'm doing wrong for a while now and I can't figure it out. What I'm trying to accomplish is this:
Take a photo with UIImagePickerController
Take the resulting ...
0
votes
1answer
293 views
How to change text color of status bar prompt?
Is there any possibility to change the text color of navigation bar prompt (i.e. the area with optional instructions) in Cocoa Touch? The text can be changed using this
[self.navigationItem ...
2
votes
1answer
115 views
moving UIImageView form first tapped UIControl to second tapped UIControl
I have 25 UIControls and 10 UIImageView. It looks like this:
Now the images are the UIImageVIews and the grids are the UIControls. What I want is when the user taps at a image and then taps at any ...
2
votes
4answers
131 views
moving button image from first button pressed to second button pressed
I have 5X5 grids of buttons. If I press the button at position1 and then press the button at position2, I want the button image of position1 to be moved to the button at position2. Like as shown in ...
0
votes
3answers
485 views
Getting EXC_BAD_ACCESS in iOS 4 using dispatch_once, not in iOS 5
I'm guessing this must be new functionality as this code fail on my iOS4 device, works fine on iOS5. I need this to work on both. I haven't moved to iOS5 yet as I still need to support iOS4, so I'm at ...
-1
votes
1answer
147 views
cellForRowAtIndexPath not invoked on iOS 4.3
I set the table, I set my view Controller as its data source and delegate, stored the table on a list so ARC wouldn't eliminate it, I ask the table to reload its data but cellForRowAtIndexPath is ...
-1
votes
1answer
440 views
Scroll View adding views on top of each other
I can add several scrollviews with its background colours changed and it works fine. So basically for every view you have different background colours. However when I try to add separate views for ...
0
votes
3answers
139 views
How to make both UITextFields content equal at the same time?
I have some UITextFields and one button, Can anyone tell me how to make both textfields (first Street Address field and Street Address field below Same As Above button) content equal at the same ...
1
vote
0answers
344 views
Disappearing UIBarButtonItems in iOS 4
I've been developing on an iOS 5 device, and it's been working fine. Now I've been testing it with different versions of the iOS simulator, and in 4.0 I'm getting some strange behaviour with my custom ...
0
votes
1answer
241 views
Tripit + GTMOAuthViewControllerTouch
I have a iPhone app. I'm trying to add tripit support using GTMOAuthViewControllerTouch. It use 4 NSURL:
NSString *myConsumerKey = kTripItAPIKey; // pre-registered with service
NSString ...
1
vote
2answers
563 views
Creating a new keyboard button for iPhone - Bug in InputAccessoryView and InputView
I create a 2 UITextView in my program. They will have to do this:
TextView1 - Will have a new InputView
TextView2 - Will be a normal numeric keyboard with a new button
Because the numeric keyboard ...
2
votes
2answers
734 views
Use threading to wait for another class's method to execute, or is there a simpler way?
I've never touched threads before, and by the looks of it I might have to delve into them a little, but I was wondering if there was a simpler solution to the problem below.
I'm basically displaying ...
0
votes
1answer
270 views
UIActionSheet will not act until buttons are tapped twice in iOS 4
I have a UIActionSheet which I create with the following code.
UIActionSheet *popupQuery2 = [[UIActionSheet alloc] initWithTitle:@"Choose"
...
0
votes
2answers
128 views
System Audio playback gives silence on iPhone running iOS 4.2.1
The Problem
I'm trying to play a short (4 second) audio clip in an iOS app.
On the device (an iPhone 3G with iOS 4.2.1) I get silence. However, the vibrate does trigger as needed.
In the simulator, ...
0
votes
2answers
481 views
Displaying UIActionSheet on keyWindow fails view != nil assertion
I have a strange problem,
I am trying to display UIActionSheet on a UIWindow object using:
[[UIApplication sharedApplication] keyWindow];
The following code rises view != nil assertion failure
...
0
votes
1answer
1k views
How to send the build to already provisioned remote person's iPhone
We have provisioned 3 devices for our iPhone development. 2 developers and one manager phones.
When the manager used to be here, we used to connect his phone to our mac and share the build with him. ...
0
votes
2answers
196 views
Not release NSMutableString
I started developing a project in ios-5, I have created database in my application.
Here I create bdgDBArr in appDelegate that contains values like 93,55,68,95,45...
I want to create string like ...
3
votes
5answers
132 views
Proper way to release memory allocation?
I'm a newbie when it comes to objective C, and am currently experiencing a memory leak with the following code snippet. The memory leak occurs with the 'responseObj' allocation. Whenever I try to ...
1
vote
0answers
182 views
resetting the background image of a UITextField doesn't work
Setting a custom background image (for iOS < 5) in the style of a tinted rounded rect text field works fine,
yet I can't change it back to normal or not even to another background image, once it's ...
1
vote
1answer
268 views
how to make NSManagedObjectContext dirty (hasChanges = YES) Manually
the problem is:
while setting transient undefined attribute in -(void)didSave metod after first save: does not make context dirty in iOS 4.3 (Simulator), but makes it dirty in iOS 5.0 Simulator.
I ...
0
votes
2answers
137 views
How are the CLLocationmanger delegate methods arecalled when the application is in background mode?
How can I get the CLLocationManager delegate methods, when the app gone into background,
I am new to CLLocationManager
Actually my app gets called CLLocationmanager dalegate methods when the app is ...
0
votes
2answers
168 views
Two PickerViews with different values
This is my code for two pickerviews in one view controller. However its not working for me.
#pragma mark UIPickerViewDelegate methods
//PickerViewController.m
- ...
0
votes
3answers
1k views
NSNumberFormatter numberFromString returns 0 for currency style formatter
I tried to test the following code in order to get a double value from a currency-style formatted UITextField (ex : $ 30,034.12 => 30034.12) :
// Init and configure formatter
NSNumberFormatter ...
4
votes
4answers
2k views
How to find the size of any object in iOS
I was optimizing my app and wanted to know that how much is the size of the object, so that i can also show it in log.
suppose i have
NSDictionary *temp=(NSDictionary*)[Data objectAtIndex:i];
...
1
vote
1answer
1k views
how to get the touchesEnded location in longpress?
In my application i have added gesture and these method
UITapGestureRecognizer *doubleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleDoubleTap:)];
...
0
votes
1answer
165 views
What should happen when Local notification method calls some other method and our app is executing long function?
How to handle this situation, When I am running a long function process. And I have some Notification that comes in between and I have to execute some task with didReceiveNotification.
Note that ...
1
vote
0answers
154 views
Why the applicationIconBadgeNumber is not getting deleted with appliccation ? Where it stored actually?
I deleted my application from iPad. And try to relaunch again. But now it displays old applicationIconBadgeNumber at very first launch. Any one know where this value is stored and why it's not deleted ...
0
votes
1answer
573 views
How to delete UILocalNotification applicationIconBadgeNumber when app is deleted from iPad?
Whenever I delete the app from iPad in ios4, a weird thing happens:
Listed below the steps I followed:
Launch the app in ios4
Schedule the UILocalnotification, by setting applicationIconBadgeNumber
...
