The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
56 views

ios sdk show alert without launching the app

I have incorporated custom URL feature in my ios application. I would like to pop an alert on the browser itself when the application is relaunched from a screen other than home screen. I know if the ...
2
votes
2answers
69 views

How to Pass NSArray Parameter to Completion Block

I want to pass the another NSArray as parameter , to completion block method ,as i am new to this concept, i can not understand the how to do it.Currently i am passing only one array, but now i want ...
0
votes
0answers
34 views

Does app work for all sdk's using xcode4.6

I have an app that works for all sdk's(4.3,5.1,5.0,6.1).I did this app using xcode-4.5.1 .But while submitting the app i will use another mac that supports xcode4.6 .I didnot find ios sdk 4.3 in ...
0
votes
2answers
71 views

Adding UIToolbar programmatically

What am I doing wrong here ? I just don't see the toolbar at the bottom of screen Here's my code. CGRect rect = self.view.frame; UIToolbar *toolBar = [[UIToolbar alloc] ...
0
votes
1answer
58 views

-80 being added to bounds.origin.x for UIView

I have a series of UIViews inside a UIScrollView which I am attempting to resize when the root view controller receives willAnimateRotationToInterfaceOrientation:duration: Here is the code... (Panel ...
0
votes
1answer
91 views

Distribution certificates for iPhone

I have an app at the appstore. Now I want to switch developers. If the old developer won't give me the private key for the distribution certificate, what are my options? If I revoke my existing ...
0
votes
2answers
319 views

How to create and use my own plist (Create in XCode, read in app)

I have to create a plist manually in xcode, then add manually some constant data - (kind of a small constant database), several objects, each having a string and a number. Then read it in my program ...
1
vote
0answers
57 views

Installing Xcode and iOS SDK Issue?

i just recently downloaded Xcode 3.2.6 for my computer. When i got it installed, i opened it up to find that the iOS SDK was not installed. Why? Do i have to download it separately? - Is there a place ...
-4
votes
4answers
125 views

Dynamic UITextField creation [closed]

Is it possible to create dynamic UITextField like when user will click text field for edit, automatically it will create another UITextField below that UITextField. if possible please give me a ...
0
votes
1answer
45 views

SQLite in C and invoke from Objective-C

I am new to iOS. I am developing an application, which needs to store few records into the database system. My intention is to write SQLite Wrapper in C, and invoke Wrapper API's from Objective-C, so ...
0
votes
1answer
86 views

Creating UITableView in init failed

I am new to ios. I am trying the following. [ Xcode 4.3.2 ] 1) Have Created a single View application. 2) ViewController implements UITableViewDelegate, UITableViewDataSource 3) in ...
1
vote
1answer
1k views

Add the Google APIs Objective-C Client Library to Xcode Project

I am trying to make an iPhone application that use google+ api.I found "google-api-objective C client" for that from -" http://code.google.com/p/google-api-objectivec-client/source/checkout " Now, i ...
0
votes
0answers
68 views

objective C : app running fine on device on debug mode but crashing when i am running it independently

My app working fine on device but on debug mode but as soon as i am running my app with out mac or xcode debug mode it getting crash. Please help me out i am not able to what is going on my device.
0
votes
1answer
2k views

Beginner level Tutorial for Xcode 3.2 and iOS SDK

Can someone let me know a good tutorial for starting iPhone App development using Xcode 3.2 and iOS SDK? Tutorial on Apple's Developer Website is about Xcode 4 but I am using Xcode 3.2 . Thanks.
0
votes
0answers
661 views

Creating Navigation Based Application in Xcode 4.2?

I wann create a navigation Based application in Xcode 4.2, Where I have some UIButtons on xib and on Button Event I wann show another Screen. I have tried with using Page-Based Application,and ...
0
votes
1answer
547 views

Playing audio when a button is pressed

I've been using the following function to play sounds... - (void) playFile:(NSString *)nameOfFile { NSString *tmpFileName = [[NSString alloc] initWithFormat:nameOfFile]; NSString *fileName = ...
0
votes
2answers
145 views

I cann't deploy app to the ipod. There is SDK issue

Yesterday everything works well but today I have some problems. I have ios sdk 4.3. My ipod version is 5.0.1. I deployed my app on ipod many times, but now I see the message. The version of iOS on ...
0
votes
1answer
233 views

Is there any good tutorial on posting to Twitter from iOS 4.2

Hi I'm looking for some simple straight forward documentation on how to post something to Twitter from within my iOS 4.2 app and the Twitter docs point me only to the iOS 5 Twitter.framework. Are ...
-1
votes
1answer
409 views

Beautiful UI ideas for IOS App [closed]

I wanted to know if someone can point me out on how to accomplish some of the iOS apps have done which makes the app so attractive : NESS iPhones app's glassy looking UITableViewCells. I dissected ...
1
vote
2answers
228 views

iOS : dealloc & IBOutlet

Is it necessary to set all declared IBOutlet and @property with retain property to nil in - (void)dealloc method ? Will memory be consumed / wasted if I don't do so? Assume that Automatic Reference ...
0
votes
2answers
88 views

Can someone please explain this Objective-C syntax?

Just going over some objective C... I'm having trouble making sense of the following: UILabel *label = (UILabel *)[cell viewWithTag:1000]; I understand that UILabel is a class. So we're creating a ...
0
votes
0answers
225 views

Could not find application with identifier “com.apple.itunes.connect.ApplicationLoader” when running Validation

I am trying to run Validation on our build machines. Our build machines don't have ios-sdk(xcode) installed. We copy/sync them from SCM. Running Validation on them fails: $ ...
0
votes
1answer
740 views

iOS SDK - Yahoo OAuth

I want to login my application through Yahoo. I have been following this tutorial: http://developer.yahoo.com/social/sdk/objectivec/ but it seems outdated. In the following line doesn't even exist ...
1
vote
1answer
181 views

xCode - Dealing with folders by code

When you add a folder that contain subfolders and files to the xCode project, the xCode ask you about the folder option Create groups for any added folders. Create folder references for any added ...
2
votes
0answers
89 views

iOS: Groups in UIPickerView?

Like the Drop Down Box ( the <select> tag ) in HTML , it has an element tag called <optgroup>. I wonder is there any grouping feature in UIPickerView ?
0
votes
1answer
384 views

iOS: Passing object to custom UITableViewCell to UIViewController via a button action on cell

I have a custom UITableViewCell, which have a button on it, IB linked to a function called: - (IBAction)clickUse:(id)sender; In this function, I planned to pass an object from UITableView's data ...
1
vote
2answers
3k views

Objective C - Async call a method using IOS 4

I want to call a method asynchronically. It is a method that gets HTMl from a server and sets it to a Webview NSString *htmlTest = [BackendProxy getContent]; [webView loadHTMLString:htmlTest ...
1
vote
2answers
73 views

Memory management in iOS - I can't find out how to release memory

Hello I am using iOS4 and I have some memory management problems that I don't understand. I will try to simplify the code. - (void)viewDidLoad { NSMutableArray* buttonArray = [[NSMutableArray ...
0
votes
1answer
106 views

How to remove map animation while its being loading?

I am working on an app that uses Map and its functionality. as we know map shows animation for pin annotations. I don't want that animation with map when zooming. Is their any way to remove this ...
0
votes
1answer
161 views

UITableView only with Images

I am developing an iOS App and I want to do a table view, but only with images like the 6G Nano images app. Does anyone know how to do that with Objective-C? Thank you (and sorry for my bad ...
0
votes
1answer
224 views

How to prevent GreyStripe Fullscreen Ad from dismissing my modal view controller landing page?

I'm landing a GreyStripe Fullscreen Ad in a modal view controller in my iPhone app. The problem is that when greystripe sdk dismisses the full screen ad it also dismisses my modal view controller. ...
0
votes
1answer
269 views

Call out Phone App in iPhone & fill in a phone number ( no dial )

I know I can call out Phone App in iPhone & dial a phone number by : [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:12345678"]]; However, is there any way to call out the ...
0
votes
1answer
370 views

Call short code phone number ( e.g. *777 ) in iPhone

I know calling phone number (e.g. 12345678) from iPhone App uses the following line: [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:12345678"]]; But for phone numbers with * ...
0
votes
1answer
268 views

build settings for running the ipa in both iOS 4 and iOS 5 devices

I want my project to run on all the iPhone devices having iOS version 4.0 or more (that is on iOS 4.1, 4.2,..,5.0), but the ipa should not get installed on a device having version lower than 4.0. ...
1
vote
2answers
2k views

in IOS SDK got message: Code Sign error: a valid provisioning profile matching the application's Identifier 'program' could not be found

i tried to connect my dev certyficate to my ios sdk, I was did all what was in guide, but after compiling and run i get error: Code Sign error: a valid provisioning profile matching the ...
-1
votes
1answer
412 views

iOS 5 : bug with loadHTMLString with style

i have this lines of code NSString* html = [NSString stringWithFormat:@"<html><body><p \"style=\"font-size:%d;text-align:center; color:red; ...
1
vote
1answer
142 views

how to compile old app in xcode 4.2 to escape GCC error

i have downlaoded new Xcode 4.2 for snowleapord, and im unable to compile the old projects since im getting GCC error. how can i resolve this issue.
2
votes
2answers
701 views

Image IO error on iOS

I am receiving the following error in the simulator: ImageIO: <ERROR> CGImageReadSessionGetCachedImageBlockData *** CGImageReadSessionGetCachedImageBlockData: readSession [0x6b78af0] has bad ...
0
votes
1answer
465 views

AQGridView demo application can not work in xcode 4 and ios 4.3

I am new in Iphone development . Now, i am trying to develop an AQGridView in iphone . I downloaded the zip file of AQGridView from Github socil coding site. The example application of AQGridView ...
0
votes
1answer
370 views

How to build and test Xcode iOS SDK 4.3 project in iPad 2 iOS 5?

I'm wondering if I can build and test my current project which is iOS SDK 4.3 based, to iPad 2 (iOS 5)? In Organizer - Devices it says: The version of iOS on “my iPad” does not match any of the ...
0
votes
2answers
537 views

Is there a shared pool of memory for files in iOS?

Is there a shared pool of memory or a shared directory in iOS where applications can read and write files?
0
votes
1answer
156 views

Can I store files in an iPhone's file system? [duplicate]

Possible Duplicate: saving data in iOS Do we have a provision to select or save a file in directories in an iPhone using NSPathUtilities.h?
7
votes
1answer
4k views

What is a .a (as libcrypto.a) file?

What exactly are .a (e.g. libcrypto.a) files and what do they consists of? Is it .m or .o or .h or .c files? How does IOS SDK/Xcode understands them? And if we include the .a file in our xcode ...
4
votes
1answer
1k views

Very Slow App Upload/Communication Failure - Application Loader

I have been using application loader since one year. But for last few months I have problems with the application loader. When I click on the send button in the Application loader it shows ...
2
votes
1answer
281 views

Augmented Reality : Search an object with camera in Android & iOS

There are some virtual objects crawling ( moving slowly & randomly ) in a virtual plane, say 3m x 3m ( 2-dimensional , in parallel with the floor ). I would like to find the object out using ...
0
votes
1answer
617 views

Can you use the uipageviewcontroller to navigate throughout multiple view controllers?

How would I go about using the uipageviewcontroller to give the effect of the page turning between multiple view controllers.
0
votes
1answer
612 views

UITableViewCell layoutSubViews: why don't I get animation?

I always thought that whatever changes I perform in layoutSubViews: is done animated? Is this incorrect information? In my case I'm inheriting from a UITableViewCell. The controller gets informed that ...
2
votes
1answer
374 views

Is there an easy way to create thumbnails of various document formats like Word, Excel on iOS?

Is there a built-in mechanism in the iOS SDK that I could use to render thumbnails (UIImage) of arbitrary document types, like Word, Excel, PDF, image formats, etc - whatever iOS is capable of ...
5
votes
2answers
633 views

iOS app gets completely misaligned when switching from 5 to 4.3 in simulator

I'm working on an app that is ideally targeted all the way down to iOS 3.2. Still, I am developing it on Lion and with the latest 5 sdk. As far as I know, I am not using any sdk 5 specific features. ...
1
vote
2answers
112 views

Does this UIBarButton exists by default in iOS? How is it called

I think I've seen this kind of button before, and now I need one. A button like the one below who's label can be changed to whatever number I need (from 2 to 10 for example). I have a feeling ...

1 2