0
votes
0answers
37 views

Renew/change the IP address of an iPhone programatically in iOS 6.1

I am developing an iPad/iPhone app for my own personal use on my own devices (i.e. not for submission to the App Store). My app needs to change the IP addresses assigned to the cellular data (not ...
0
votes
1answer
49 views

Putting isCancelled Property in an NSOperationQueue

So, I am using the addOperationWithBlock^{}method of the NSOperationQueue and I want to put the fine grained isCancelled property check at points in the operation code. How do I get the instance of ...
1
vote
1answer
77 views

Is there a way to programmatically force a horizontal split view in Cocoa?

I am writing an iPad app in XCode 4 and would like to create a UISplitViewController instance that displays its viewController references horizontally on the screen. I have been referring to the XCode ...
0
votes
3answers
49 views

Public Header Path, Installation Directory, Search Header Path and other nightmares

I have a project composed of 2 libraries (libraryA and libraryB) and a bundle. Each one of these were created like a project and imported on the main project by dragging them. Just dragging them were ...
2
votes
1answer
47 views

How to include everything on the final app

I have a project that is using 2 static libraries I have created, lets call them libraryA and libraryB and a Bundle. The main project uses libraryA, libraryB and the bundle and libraryA also have ...
0
votes
2answers
67 views

including a header from a project into a static library

I have a subproject (static library) inside my project. As this static library may be used by a bunch of app, I have this config.h file on my project that contains the app configuration. The static ...
0
votes
1answer
47 views

accessing resources on bundles [duplicate]

I have created a subproject as a static library and added a bundle to it, so I can wrap the project and resources that will be used by all programs using that library. I have followed the ...
0
votes
2answers
68 views

Bundle from Static LIbrary

I have added a subproject as a static library to my main project. Now, on the main project I am trying to load something that is on the bundle of the subproject. Something like this: NSString ...
0
votes
1answer
88 views

UINavigationController's nav bar seems invisible, but title and buttons are still visible

I've run into a weird situation. This is all done in code - no Interface Builder. I'm creating a UIViewController and adding some content to it: UIViewController* popoverViewController = ...
0
votes
1answer
90 views

Difficulty parsing RSS feed

I'm trying to parse an RSS feed (http://www.themostunrealbeats.com/?feed=rss2) using NSXMLParser. I am having difficulty finding the picture in the article. Here is where the picture is in the RSS ...
0
votes
0answers
101 views

MPMoviePlayerController plays only audio after application enters foreground

I have an app that plays video files stored on Amazon S3 using HTTP Live Streaming. Sometimes when I move the app to background (press the "Home" button), return to the app and press play button, only ...
2
votes
2answers
52 views

Embedding a project inside a project?

I have a project that will fork in 4 different apps for internal use on my company. The main project core is the same. I first thought of creating a big app with 4 targets but I would like to keep ...
1
vote
2answers
147 views

UIScrollView inside UIScrollView

I have a UIScrollView with another UIScrollView inside. They both are scrolled horizontally and have pagingEnabled = YES. Assume that I started to scroll inner scroll view and reached the most right ...
0
votes
1answer
41 views

How can I construct a path to the cache directory on iOS?

I have what feels like the wrong way to construct a path to the cache directory on iOS... - (NSString*)pathToCachesDirectory { NSString *cachesDirectory = ...
1
vote
1answer
104 views

smooth thumbnail slider / carrousel for iOS [closed]

I've experimented with several dozen carousels for ios on my iPad, both HTML5 / javascript based, and native. However none of them offer the same smooth-scrolling experience that I see in the Amazon ...
1
vote
2answers
39 views

Semi showout from left for ipad

I want to have a button on the right of my app. when that is tapped, it must pull out a view from right on the to main view and it should only be 1/3rd size of the main view. Is there any control for ...
0
votes
1answer
75 views

UITextField in cell that is not visible has userInteractionEnabled set to No

I am trying to skip over text fields that are disabled when a user navigates through my tableview. However, when they reach the bounds of the visible cells, everything gets out of whack because I am ...
1
vote
2answers
55 views

running a method with object from a string

at one point of my code I have references to methods as strings and I have their targets. For example, suppose I have an object called myObject and I have a method there called "doSomething:" like ...
-3
votes
1answer
56 views

How to test android app for various mobile variants? [closed]

If you are developing an iphone/iPad app is it possible to test without the device? How about other apps like android(how to test for different variants of mobiles - say Samsung, nokia etc...). What ...
0
votes
1answer
38 views

How do I tell the difference between the user tapping my table view cell and the user tapping a subview contained within the cell?

One of my view controllers contains a UITableView with custom UITableViewCell's. My custom UITableView cell contains a UIImageView subview that represents a tappable icon. When the user taps ...
0
votes
2answers
123 views

check the same images after flip cards (objective-C)

I have 4 cards and I can flip my cards, I want to check if my images is the same show 2 images and if it's not back the flip, would you please give me some tutorial or sample code; Thanks in ...
0
votes
2answers
225 views

Increase UIButton's touch effect radius on highlight

Is there a way to increase UIButton's "glow effect" when Shows Touch on Highlight is enabled? In most of the cases it's fine on the iPhone, but way too small on the iPad. If it's not possible, any ...
0
votes
1answer
254 views

xxx.layer insertSublayer:buttonALayer atIndex:1 not working in iPad?

Just as the Headline states. I have two Storyboard, one for iPhone and one for IPad. iPhone works, iPad not. I can access the buttons, for example i can do setTitle for iPad and iOS, but when i ...
-1
votes
1answer
61 views

iOS - way to force Xcode's debugger to work

One of the most annoying bugs of Xcode is that some objects vanish from the debugging window when you most need them. Is there a way to force Xcode to always show all objects? thanks.
0
votes
1answer
42 views

Adding root cert at compile time to the trusted store

I am trying to add one of our root cert in the trusted store of the iOS. I am just curious if this is possible to do at the compile time? I have seen different versions of people creating p12, but ...
2
votes
3answers
1k views

Interface orientation in iOS6 and iOS 5 on iPad is not working

i am creating a iPad app which supports the ios versions 5 and 6. I have a view controller which is shown at the start of the application only in portrait mode. Later i have a view controller which ...
-2
votes
1answer
97 views

Make a virtual clock that runs faster then normal time in Objective-c [closed]

I want to make a virtual clock in Objective-C - that runs faster then normal time. 1 virtual min. is equal to 10 normal seconds. 1 virtual hour is equal to 10 normal minutes. Clock 00:00 (virtual ...
2
votes
5answers
192 views

File search with specific Extension Objective c

I am working on some file manipulation in iPhone project. Where i need to search files of specific extension. One option is to manually process each file & directory to find. My Question is, Is ...
0
votes
3answers
54 views

Event set on delegate

I am trying to understand some concept here regarding delegate and callbacks. Basically I am trying to make an http-request, which is based on zipcode. So prior making http-request, I call a ...
-3
votes
2answers
32 views

regarding add view to unknown class [closed]

Is there a way to add a view to Super class (AppDelegate), without knowing the name of the class of AppDelegate? Its common practice that developer's rename such class, so what if there is a scenario ...
1
vote
2answers
156 views

Notify app when iPad date time settings changed

I would like to get notified when ipad's date-time settings is changed. Is there any way for that?. I am using NSDateFormatter to find whether iPad/iphone time mode is 12 or 24 hr format. ...
-4
votes
1answer
181 views

how to image post on php webserver through base 64 json parsing [closed]

NSString *urlString=@"http://demo25.projectproofonline.com/soul_mate_modified/save.php"; NSString *postString =@"register"; NSString *email =emailStrings; NSString *filename = ...
1
vote
2answers
132 views

concurrent way to load multiple loadRequest of webView

Currently I have about 4 to 5 different webView's which I am trying to load simultaneously, however I have come across the conclusion that only one loadRequest can load at a time. Although I have ...
0
votes
1answer
45 views

turn away to assign a property from Class method

I am just curious as if there is anyway to assign a property that is being triggered from class method? Ex: + (void)asyncResponse:(NSDictionary*)response:(NSError*)error I am getting a response ...
0
votes
1answer
67 views

how to figure out whats the SEL name used

I am just curious if there is a way to extract the SEL name dynamically? Not sure how to extract SEL since its a typedef struct. Thanks.
1
vote
0answers
43 views

iOS companion app extending Mac app (secondary screen/accessory panel/..)

For one of my Mac apps I'd like to offer an iOS companion app that would basically act as a utility panel or accessory view to the Mac app (i.e. both need to be running at the same time) - Users would ...
0
votes
2answers
85 views

using Delegate and its selector

I have a certain scenario where I am trying to accomplish more generic approach of using delegate and calling a selector based on what selector is being set. For example below is the code: @protocol ...
0
votes
2answers
50 views

Using Webview within Class Method

Basically I have a class method which I am calling to call a web-service call as in dispatch mechanism, and when I get the response, I send the response in NSDictionary in sync mode. ...
0
votes
0answers
45 views

calling sync call before async call

I have a certain situation here, and wanted to see the best outcome of the approach using design patterns and OOPS concept. I have a "web-service" call which if called with different parameter lets ...
1
vote
4answers
177 views

Purpose of (^) sign in iOS

I have seen in many iOS header's that (^) is utilized, and I have never come across the reasoning as of why that sign is being used. Would anyone might like to enlighten into this? Thanks.
0
votes
1answer
90 views

Changing url for NSMutableURLRequest after its being initialized

I am trying to see if there is a way to change the request url once the NSMutableURLRequest is being initialize? I looked into the instance method, but nowhere it indicates that you can change the ...
0
votes
2answers
51 views

Having an issue while trying to implement In-App Purchase

This is my first time to implement In-App purchase and I am using the tutorial located here: Ray Wenderlich Now I am sure this is something simple, but I am having issues figuring out, so I figured I ...
0
votes
3answers
178 views

Preload JavaScript in UIWebView

So I am currently working on an iPad App (iOS 6) that shows a webpage that is located on my company's intranet. The access from the Internet is achieved via a reverse proxy which works great. The ...
0
votes
1answer
62 views

Ideas Needed : Ways to display list of list of data in iOS

I'm currently developing an iPad app. On a specific view, I have to display some informations as this form : Item1 : DATA Item1-1 : DATA Item1-2 : DATA Item1-3 : DATA Item1-3-1 : DATA ...
0
votes
1answer
44 views

LocationManager in iOS reallocating before calling delegates

I am using ARC and calling LocationManager to get latitude and longitude, however before even calling the delegates, the content is being deallocated. Anyone have come across this issue before? How ...
0
votes
2answers
72 views

Declaring delegates on .m

I am relatively new to Objective-C. I have come to a code on the web that has something like this on rootViewController.m (this is a navigationController based app). @interface RootViewController ...
0
votes
2answers
159 views

Parsing Intuit XML response in iOS

I'm trying to parse a REST response which is in XML. The interesting thing about the response is that multiple nodes have the same name. I'm looking for a simple way to parse this data in iOS. Here's ...
2
votes
3answers
242 views

How to monitor how much memory my App is consuming?

From time to time, different Apps I am developing close itself, I'm assuming it is because of memory usage that the IOS kills once it is to high. Even if it is not because of memory I will like to ...
0
votes
1answer
29 views

Cocoa: scene vs. view

Noob question here. I think I get the basics of the three basic Model-View-Controller elements. Sort of. But what is a scene? I know iPad can have more than one scene per screen, and iPhone/iPod can ...
0
votes
2answers
144 views

NSTimer not working calling UIButton setHidden:YES/NO

I can't understand why this doesn't work. I'm trying to display lblstatus when the timer cycle is hit: -(void) viewDidAppear:(BOOL)animated { [NSTimer scheduledTimerWithTimeInterval:1 ...

1 2 3 4 5