2
votes
2answers
750 views
Resizing an image with stretchableImageWithLeftCapWidth
I'm trying to resize an image using stretchableImageWithLeftCapWidth: it works on the simulator, but on the device, vertical green bars appears.
I've tried to use imageNamed, imageWithContentOfFile …
0
votes
2answers
12 views
Undocumented Methods: Use them or not?
Hi,
I want to know what the risks are of using undocumented methods in the iPhone SDK.
I haven't had any issues thus far, but I am worried that doing something like this might screw up the app.
Any …
2
votes
5answers
3k views
UIImage rounded corners
I try to get rounded corners on a UIImage, what I read so far, the easiest way is to use a mask images. For this I used code from TheElements iPhone Example and some image resize code I found. My …
0
votes
4answers
495 views
Xcode 3.2 Missing Class Actions / Outlets?
Where are the Class Action and Class Outlets in Xcode 3.2? They aren't showing up in the Inspector like they used to.
0
votes
2answers
10 views
NSManagedObject subclasses and setValuesForKeysWithDictionary:
I am initializing a NSManagedObject subclass using:
- (void)setValuesForKeysWithDictionary:(NSDictionary *)keyedValues
I am also knowingly giving it the undefined keys, which of course should …
1
vote
3answers
1k views
UITableView: deleting sections with animation
Update
I have posted my solution to this problem as an answer below. It takes a different approach from my first revision.
Original Question
I previously asked a question on SO that I thought …
1
vote
1answer
33 views
Block touch propagation to other view
Hy, I have a childe view that put it self over other brother views. The problem is that when i touch it the brother also reacts at the touch event. How can I disable touch propagation on the …
1
vote
1answer
20 views
UIProgressbar in Cococa Touch
Hi all,
I want to display an UIProgressbar depending on the amount of data downloaded from the server.
One way I implemented is I made a NSURLConnection and set the delegate.
The - …
1
vote
1answer
47 views
Detect if iPhone is in phone call [closed]
Possible Duplicate:
Is there a way to get to know if the user is on call while using my app?
I know others have asked about detecting phone calls, but I want to know if there is a way my app …
0
votes
3answers
44 views
iPhone + file upload control
Hello,
I have an application which uploads file from iPhone to web server.
Problem is that I want to give users a control like from which they can select the file / photo from the device and which …
1
vote
6answers
609 views
Setting an object nil versus release+realloc
This is not a garbage collected environment
I have a class instance variable which at some point in my runtime, I need to re-initialize with a different data set than it was originally constructed …
0
votes
3answers
322 views
Cocoa Touch UITabBar action on tab switch
I have a UITabBar with a number of UITabBarItems. I've assigned a different view controller to each of these.
I want to load some data etc., when each button is clicked. Therefore I will like to know …
0
votes
2answers
21 views
String & variable Help needed - iphone sdk
Hey guys,
I have this quick problem I need to solve. I have a string here like so:
textbox.text =@"Your name is"
then I want to add right after "your name is" a variable that displays text.
so in …
0
votes
3answers
63 views
Controlling Number of Application Executions
Is there a way to control the number of times an iPhone app executes. For example, I have a game called widget and I only want the user to play the game (new instance) no more that 20. Also, if tis …
2
votes
6answers
2k views
How do you add multi-line text to a UIButton?
I have the following code...
UILabel *buttonLabel = [[UILabel alloc] initWithFrame:targetButton.bounds];
buttonLabel.text = @"Long text string";
[targetButton addSubview:buttonLabel];
[targetButton …
