0
votes
1answer
12 views

How do I make my launch images for iPhone use the user's status bar?

I tried removing the status bar from my Default.png images, but under iOS 6 apps seemingly load with that blue-tinted bar, and since my app uses a black one it doesn't work. For example, the Facebook ...
1
vote
5answers
80 views

Understanding what happens and why you need a delegate and source for table views

I have been practicing with table views and I know how to create them but I would like to have a better understanding about delegate and source when creating table views. Can someone explain the need ...
1
vote
1answer
31 views

How to get IMEI on iPhone 5

I'm develop application for jailbroken iOS devices. I use https://github.com/erica/uidevice-extension/blob/master/UIDevice-IOKitExtensions.m to get IMEI, but on iPhone 5 this solution does not ...
0
votes
1answer
30 views

Issue during validation

I have 2 issues during validation. iPhone/iPod Touch: Info.plist: Unable to verify icon dimensions, no icon found. You must define CFBundleIcons, CFBundleIconFiles, CFBundleIconFile, or provide a ...
1
vote
1answer
21 views

iOS6 Social framework: posting to multiple networks without the UI

In my app, I'm looking to allow my users to post a single status to both Facebook and Twitter. I've got my own compose window, so I'd like to avoid using the built-in SLComposeViewController, since ...
0
votes
4answers
53 views

ios how to hide one uiview and push another uiview at the same position

I want to set myview hidden and view visible, how can I do this. This is the code I got so far but it makes everything hidden. CGRect frame = CGRectMake(185, 960, 768, 1004); HiUIView *view = ...
0
votes
2answers
43 views

Objective C Converting float to integer produces strange results [closed]

I have float which has value 30 which I get from core data. When I print the value using NSLog I get 30. NSLog(@"The value of float temp is %@", [self.detailItem valueForKey:@"credit"]); When I ...
1
vote
1answer
19 views

Sharing image exclusively with another app

I have two I apps, sender and receiver, and I want to exclusively share a photo with receiver, how can I share directly with the receiver so I don't have to present an action sheet to the user? I ...
0
votes
2answers
21 views

CFBundleVersion of another app on the device

I can get the version of my app by doing this: [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"] But how do I get the version of another app on the device? I want to know if ...
0
votes
0answers
10 views

After booting the launch Image resizes to half the width and won't disappear

I have a strange issue. After my App reboots, my Launch Image won't disappear and my initial view of my Main Storyboard won't show. Instead of disappearing the launch image resizes to half the ...
0
votes
2answers
29 views

UIButton titleLabel not displaying

I have seen a bunch of similar questions, but noone got the answer I am looking for. When I use this code to make a UIButton and set it's titleLabel, the UIButton appear, but the titleLabel won't ...
0
votes
1answer
53 views

iOS 6 - UIActivityViewController items [duplicate]

Hope everyone is aware of iOS 6 contains new style of ActionSheet (UIActivityViewController). The UIActivityViewController can be initiated with the paramentes like string, url, image etc. Below is ...
0
votes
1answer
16 views

Can we add dependency in between unit test class1 to unit test class2 iOS

I have started writing Unit Test cases for my existing application for testing functional flow. I am using OCUnit (SentestingKit.framework). App is client-server based app. There are five tabs in my ...
0
votes
0answers
16 views

ios DatePicker alternative or how to select multiple dates?

Ok, I have application with lists of to do tasks and I want to allow user to select due date for each task on a single screen. How would I go about doing this, datePicker seems just to big and clumsy. ...
0
votes
3answers
51 views

Trying to give UILabel a shadow, but it won't show up

I'm trying to give a label in one of the classes in my app a drop shadow, but it's not working at all. Nothing shows up. What am I doing wrong? // Set label properties titleLabel.font = [UIFont ...
0
votes
1answer
33 views

Symbols not found for architecture i386 - But works for iOS device

I am facing a strange problem here, I am trying to integrate the libkml C++ project sources into my iOS project. The project compiles independently fine, but when it comes to linking through this line ...
0
votes
1answer
32 views

Detect change in NSManagedObjectContext in app delegate from different class?

I have an NSManagedObjectContext in my app delegate and data is loaded and saved fine. I also call NSManagedObjectContext from master view controller and load data there. However I have problem as ...
0
votes
0answers
21 views

With YRDropdownView, when I present it after a refresh it gets caught at the top of the screen, and can't be seen

I'm using YRDropdownView to present notifications in my app, in this case when they try to manually trigger a data refresh it will notify them that there's no internet (if there isn't). This refresh ...
0
votes
2answers
40 views

How to Insert Core Data Record Related to Another?

Currently I have two entities in my model; Module and Level. They have one to many relationship e.g. a level can have a lot of modules. How can can I insert data so that they are related one to ...
1
vote
2answers
32 views

Safe to use Regex for this? (HTML)

I'm parsing some HTML, and I need to get all html in the body tag. My target string will always look something like this: <body><div><img src="" />text etc</div></body> ...
0
votes
1answer
47 views

Objective C: “Property implementation must have its declaration in interface” [closed]

I keep getting error above but I am not sure why. I imported all the required classes and I declared the properties. Any help is appreciated. I have included code below: // ...
0
votes
1answer
15 views

iOS, url schemes for app store both for specified developer's apps and for his concrete app to update in iOS 6?

This question was already answered but in iOS 6 all these solutions doesn't work. My current solutions sometimes doesn't work too: https://itunes.apple.com/us/artist/developer_name/developer_id ...
0
votes
0answers
32 views

ios redirecting to safari issue

I am one strange issue ,the issue i am using the [[UIApplication sharedApplication]openURL:[NSURL URLWithString:URLString]] Url string means login page if i am calling the browser for the first ...
0
votes
0answers
17 views

IOS Bluetooth BLE writevalue return “Unknown error”

I am developping my first Smart Bluetooth (BLE) software on IOS 6. I am able to receive notifications and read chracteristics values exchanged with a Nordic Development kit including from a custom ...
0
votes
0answers
15 views

Cached images in UIWebView take longer to load? (NSURLProtocol?)

I'm serving up local images to my UIWebView via NSURLProtocol (which means the image is returned almost immediately), but I'm experiencing an issue where cached images (images being displayed again ...
0
votes
1answer
51 views

UIToolbar buttons with UIImage not entirely transparent

I've had this code forever, and it used to work, but it started exhibiting an annoying behavior in, I think, iOS 6. There are several similar threads on SO, but I haven't found a solution that I am ...
0
votes
0answers
8 views

Why is the crop rectangle for existing pictures not square, but newly taken pictures yes?

I have this situation where I want all my images to be upload in a square aspect ratio. When the user is presented the option to add a picture, he can either take it live, or select one from the photo ...
0
votes
0answers
8 views

FileReader returning the result fine in the first instance, but repeats that result in subsequent calls - PhoneGap 2.6 & iOS6

I'm trying to use PhoneGap to retrieve file contents however i'm getting some odd behaviour. It's working the first time around however, on subsequent calls it's returning the exact same result. ...
0
votes
1answer
39 views

dismissViewControllerAnimated results in empty screen

I present modal view which is a navigation controller: UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:photoEditVC]; [self presentViewController:nvc ...
0
votes
9answers
76 views

How to hide keyboard on touch the scroll view Background? [closed]

I went through all the solutions but none are working. I am developing an app for iOS 6, ipad. I want the keyboard to go away when user touches outside (on scrollview)...
0
votes
0answers
34 views

App level VPN connection - Enable in device through coding

I want to connect the VPN server through my app without configure the VPN in device level. It looks like app level VPN connection. It is not a exact vpn client but before open my app, I have to check ...
1
vote
2answers
47 views

Downloading pdf is not working

I am trying to download locally the PDF that is there on my UIWebView using code mentioned below. Save PDF which is displayed by UIWebView locally When I type, NSLog(@"pdfille==%@", pdfFile);, I see ...
0
votes
0answers
16 views

requestAccessToAccountsWithType Returns NSError of “(NULL)”

I am using this code to connect to Facebook. It works the first time. Then I go into my Settings App and revoke the permissions. Then I go back into my app and run this code again. granted returns NO ...
0
votes
4answers
42 views

Synthesized NSMutableArray is returning null

So I've declared this in my appDelegate.h @property(nonatomic,strong) NSMutableArray *featured; I've synthesized it like so in my appDelegate.m @synthesize featured; When I log ...
0
votes
1answer
26 views

Is it safe to compare private class names for an app that will be submitted to AppStore in iOS?

I have an app that I will submit to the Apple AppStore. In this App, I need to specifically close the TWTweetComposeViewController when the app enters the background. In iOS 6, I get the Tweet ...
0
votes
1answer
52 views

Will I have trouble in Apple's review process for “messing” with UIWebView? [closed]

I'm planning to control how long of a touch is required before UIWebView initiates a text selection, and I'm planning on doing this by getting the UIWebBrowserView subview and changing the duration of ...
1
vote
0answers
24 views
+150

Weak Linked Framework Causing “File Not Found” Error

I am building an app that uses the Social.h and Accounts.h frameworks. I have both Frameworks set as optional. I have my Base SDK set as 6.0 I have iOS Deployment Target set as 5.0 When I build ...
0
votes
0answers
55 views

UIScrollView acting differently on iOS 5 and 6

I have a simple uitableview controller to start my application. I set it up so that there is a segue between this and the next controller. This next controller is a uiviewcontroller containing a ...
-1
votes
2answers
26 views

Change buttons' font in inputAccessorView [closed]

I can't find a way to change the font for the buttons in the inputAccessoryView. Can somebody help me with this?
0
votes
2answers
49 views

Update tableView when images loaded asynchronously

I get images asynchronously with parse, and i insert them into an array with some other stuff. I return this array to fill a tableView, and the rows has an UIImageView, but some images that i get ...
2
votes
4answers
47 views

How can I create a mixed, “Master-Detail and Tabbar” application in iOS

I'm trying to create a Master-Detail iPad application with a list of saved files in the Master view, and the main interface in the detail view. There will be many different views in the detail and ...
0
votes
0answers
30 views

Error when running app in iOS5 for facebook

I am using DeFacebookComposeViewController to share pictures in facebook. It is running fine in iOS6. But have issue running in iOS5. I put a breakpoint in this function: - ...
0
votes
0answers
25 views

Header files are not added with framework kit in ios xcode

I'm so new to xcode, I have a speechkit framework with following files as shown in image below Now When I add this framework to my xcode project the header files are shown empty as below and I ...
0
votes
2answers
32 views

Loop through static cells in a single section. UITableView

I have a static UITableView, with a number of sections. One of which contains a lot of cells which will be options (click to checkmark). I have an NSMutableArray (self.checkedData) that contains the ...
0
votes
1answer
38 views

How to set tabbar image color ios button?

i create a 4 button like tabbar , but image show as colored ,i need show images as like tabbar image color (gray) . Thanks
2
votes
2answers
55 views

How to Navigate from TextField to TextView on Done or Next button click

i have 1 problem when i click button "Next" of keypard to move cursor from TextField to TextView The first ,all is ok. But in the second , the cursor jump into the line second of textView and then ...
0
votes
0answers
30 views

stringByEvaluatingJavaScriptFromString and applicationDidEnterBackground in iOS 6.0

When I invoke stringByEvaluatingJavaScriptFromString from applicationDidEnterBackground function, everything is working except changing CSS or DOM elements. Those executions happens only while ...
0
votes
3answers
31 views

Is it possible to load a library before linking based on iOS version?

I have an application which is supposed to use google maps and mapkit framework. Now, google maps are only supported on iOS version 5.1 and further whereas Mapkit framework is supported on lower ...
2
votes
1answer
30 views

Create a TabBar Controller with a Master-detail template?

I created master-detail template for the ipad application and now I want to add Tab Bar to either master view or detail view. I can easily add tab bar controller using editor->embed in ->tab bar ...
3
votes
1answer
66 views

Dot syntax vs square brackets when setting background color in collection view

I'm still learning IOS SDK so hopefully this makes sense. I am still trying to wrap my head around using dot syntax. Could some one explain why this code doesn't work but the second one does? Not ...

1 2 3 4 5 58