0
votes
0answers
6 views
Blending Three Images into Graphics Context Using Alpha Blend Mode kBlendModeOverlay
Does kCGBlendModeOverlay not work exactly like Photoshop's Overlay blending mode? I'm trying to overlay three images into a graphic context via:
[uiimageGreen drawAtPoint:CGPointMake(x, y) …
0
votes
1answer
8 views
Why does AVRecorder initWithURL seem to leak memory?
I have a class that subclasses NSObject. Its -init method looks like this:
-(id)init
{
if (self = [super init])
{
[[AVAudioSession sharedInstance] …
0
votes
1answer
33 views
Distinguishing between didSelectRowAtIndexPath and accessoryButtonTappedForRowWithIndexPath
I've implemented didSelectRowAtIndexPath and accessoryButtonTappedForRowWithIndexPath never seems to fire. However, didSelectRowAtIndexPath always fires, even when I click the accessory. Shouldn't …
0
votes
1answer
35 views
I am trying to add a drop shadow to a UImageView
I am trying to add a drop shadow to a UIImage view. I get a shadow but it is clipped to the edges of the image view and I am not sure why since I correctly set the uiimageview.clipsToBounds to NO. …
1
vote
3answers
52 views
iPhone Email app launch url
The url to launch email and start a new email on an iphone is "mailto://someone@somwhere.com". I just want to launch the email app, dropping the user at the main menu, or inbox.
"mailto:" starts …
1
vote
1answer
14 views
UIDeviceOrientationUnknown in landscape mode
I am trying to figure out what orientation the iphone has in the simulator and instead of giving it to me using the UIDevice orientation property I just get UIDeviceOrientationUnknown.
Does this …
0
votes
4answers
77 views
Background threads consuming 100% CPU on iPhone 3GS causes latent main thread
In my application I am executing 10 asynchronous NSURLConnections within an NSOperationQueue as NSInvocationOperations. In order to prevent each operation from returning before the connection has had …
0
votes
3answers
32 views
Keyboard not show onload
Hello
I want the keyboad show automatically onload, but it did not work as i expect
here is the code i use:
- (void)viewDidLoad {
[super viewDidLoad];
[seachBar2 setDelegate:self];
}
- …
0
votes
2answers
42 views
How do I fade in /out a rectangle or text?
Hi all,
I want to achieve the effect of fade in / fade out the rect or text. I call CGContextFillRect or CGContextShowText in my UIVIew's drawRect: method. I wonder if there is a way to achieve the …
0
votes
1answer
13 views
iPhone: Get a list of clickable areas on screen in cocoa touch
Hi All,
I have an iPhone app and I want to get a list of co-ords that are clickable by a user. I want to automate testing and have a client app click around on screen but just choosing random coords …
0
votes
1answer
37 views
In iphone, how to check whether internet is there from the app ?
When my app starts, I want to check whether the net connection is avaliable or not. And if not I want to show an alert message. How can I check it?
1
vote
6answers
98 views
Why doesn’t Apple allow subclassing of UINavigationController? And what are my alternatives to subclassing?
I'm currently building a tabbed iPhone application where each tab's view controller is an instance of UINavigationController, and where every subcontroller of every one of the UINavigationController …
0
votes
1answer
54 views
Determining value of NSUInteger
I'd like to view the value of an NSUInteger at any given time. I assign the value below:
NSUInteger test = -1;
Then try to view it in the debugger:
(gdb) po test
Cannot access memory at address …
1
vote
1answer
41 views
Overriding drawRect: and pushing new offset CGContexts onto the stack
I have overridden the drawRect: in my UIView and I want to draw several tiles. I'm looping through them all and I have a separate function that draws each individual tile.
The way I'm doing it now is …
0
votes
1answer
29 views
Drawing a convex shape with CoreGraphics
I am trying to create a right triangle with a convex hypotenuse.
Start with a square
Cut off half of it diagonally such that what is left is a right triangle.
Curve the hypotenuse inwards
How …
