Hi everyone,
I would like to add some constant keys for my application, these constant can be accessed anywhere in program. So I declare constant in interface file:
#import <UIKit/UIKit.h>
NSString * MIN_INTERVAL_KEY = @"MIN_INTERVAL_KEY";
NSString * MAX_TOBACCO_KEY = @"MAX_TOBACCO_KEY";
NSString * ICON_BADGE = @"ICON_BADGE";
@interfa...
Hi,
I am not sure how should i get corresponding URLConnection response data , if i use more than one URLConnection. Please help me out, i need to use more than one URLConnection?
Regards
Sri
...
Hello,
I still searched for this but without success.
I would like to create 'Quick Help' entries in XCode for custom classes.
Don't know Quick Help?
Select a function-name, right-click and choose 'Quick Help'
Then you can see function-description, etc.
Somebody an idea how to accomplish this?
Rene
...
I need to put up an info screen above the main interface, but I need it to be alpha'd so you can see the interface underneath it. However, when I touch across the screen, the interface underneath is still running.
What is the best method for intercepting the touch events so they don't pass through? I tried to add a custom UIButton the s...
Hi,
I have 100s of file which needs to be accessed for displaying the content on iphone. They are all plists.
Which one is faster core data or file access ? which one is secured ?
...
Hello
I am developing for Iphone by using Netbiscuits tool. I need to use drag & drop functionality on IPhone. I have found a javascript code which locates at Drag Drop Javascript Library for iPad & iPhone. However I am not able to use drag & drop functionality by usng javascript code which was given at the website. Have you ever added ...
I'm sure this is simple but I am trying to add an array of images to a layer. Here is what I have so far:
// Create the fish layer
fishLayer = [CALayer layer];
//fish = [UIImageView imageNamed:@"Fish.png"];
fish.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"swim01.png"],
[UIImage imageNamed:@"sw...
As the the Question asks,
I currently sport xcode 3.2.3 with iOS 4.0.1 but I want to test on my iPhone which is stuck on 4.0.2
Thus I cannot do so until the SDK for 4.0.2 is accessible from xcode.
Where can I download a patch update from 4.0.1 to 4.0.2 because the iPhone members page seems to only link me to the package including xcod...
I want to show the UIView in full screen, but show the status bar, other things, like the navigation bar need to cover by the UIView. How can I do so ? Thank you.
...
Hi,
I'm trying to applescript XCode into building and launching on device. My script is as follows:
tell application "Xcode"
open "tmp:iphone:Guidepal:Guidepal.xcodeproj"
tell project "Guidepal"
clean
build
launch
end tell
end tell
My project consists of two targets, MainTarget and a SideTarget, th...
I'm whipping up a short specifications/requirements document for a small prototype iPhone app project. Describing the basic functionality and behavior is not an issue for me. But, since my mobile application and iPhone development knowledge is very weak, I'm not really sure what else should be in such a document regarding best practice...
Hi!
I have a application, what is download a xml file and after parser it. After the processing data visualize in a table view. Problem: When I download and parser the data I change the view (Sample viewController -> UITableViewcontroller). The tableview doesn't reloadData.
First I download the XML from the server. After I hand to the X...
Hi all,
I have a table view in which i am reordering my cells
Now the issue is that the client doesn't like the icon of the reorder (i.e. 3 horizontal lines)
Is there any way you can help out.
First of all I want to know Is it possible at all?
...
How would I go about creating a custom number pad like what is used in 'Tipulator' and other apps.
I know how you can customize UIKeyboard, but their number pad doesn't look at all like the default number pad. Is it even a UIKeyboard or a separate UIView?
...
I've got several UIViews that have a layer class of CATiledLayer because they need to be zoomed using UIScrollViews. I use Quartz to render some PDF pages inside said UIViews. Everything is fine until I try to animate said views frames on page rotation.
The animation is fine, the contents of the view gets scaled quickly and cheaply to m...
Hi @ all
Can anyone please tell me why the following code leaks? Instruments tells me about 2 leaks. The 2 lines that obviously cause the leak are:
Person *pers = [[Person alloc] init];
and
NSMutableDictionary *dict = [[NSMutableDictionary alloc] initWithContentsOfFile:path];
The whole is listed below:
PersonViewController *perso...
Hi All,
Is there any way to remove the minus sign when in editing mode and displaying only the reorder icon?
Trying since long time. Somehow succeeded in removing the indentation of table but still failed to remove the minus sign.
Also i want the reorder icon appear permanently on screen so the table view will always be in editing mo...
I have a table view inside a navigation controller, which is one view for a tab bar.
Everytime I launch the app, the horizontal scroll indicator flashes briefly when i select this tab.
Could this be related to the initial tab selected, which does contain a scrollview?
I was under the impression that table views couldn't scroll horizo...
Hello,
Is there an efficient way to update the last modified property of a file on the iPad's filesystem i.e. the unix touch command?
I've had a look at NSFileManager but no luck.
...
Hi
I am facing a problem in touch handling after the layer has animated.
I have a CALayer called a “wheel” and it contains sublayers on which I have to detect touches and move the wheel. here is my code for wheel animation
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
// Get the touch point
UITouch *touch = [touc...