Hi! I've a custom UIImageView and I need to implement UIControl methods (like touchupinside)
but I don't know how to do this. Here is my custom UIImage
#import "IngredientImage.h"
@implementation IngredientImage
@synthesize startLocation, initialFrame;
- (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event { // Retrieve the t...
Hello All,
I am working on one module where I need to pick image from photo library and draw on view.but whenever I pick the large scale images it always return me 640 *480 scaled image and because of that small image is displayed.
I have made AllowEditing ON.
can anyone help me to find the resolution of original image,so that I can a...
I want to hold ipod Library song in NSData to send on Webservice.
how i can get that song in NSdata
...
Good Morning Users,
i have implemented the follwing deleagate Method:
- (void)openFlowView:(AFOpenFlowView *)openFlowView doubleTapOnIndex:(int)index itemView:(AFItemView *)itemView{
NSLog(@"Der Touch geht!!!!!");
}
And there the method should be prompted and called:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)eve...
Hi,
I want to know what is the difference between before releasing my object of [super delloc]
and after releasing my object of line [super delloc]
For example,
Before..
- (void)dealloc {
[theAudioPlayer stop];
[soundFilePath release];
[theAudioPlayer release];
[super dealloc];
}
Now after releasing object..
- (v...
I have an editable pList with a dictionary of strings in the format:
21-10-2010 -> @"item1"
20-10-2010 -> @"item2"
19-10-2010 -> @"item3"
18-10-2010 -> @"item4"
17-10-2010 -> @"item5"
ect...
So with dates in stringformat as keys, and strings with different information as value. The lenght of the dictionary can become up to 2...
Hi guys ,
how do i make my uiwebview look exactly like safari when a page loaded , take for example this page
http://www.240-voltz.com/
it does not load like safari where i can choose where to zoom in?
cant upload images need 10 reps !
...
Hello,
I have readed your post about SoapMessage.
I don't know if you can help me but i have a REST Service POST call that I must consming from my app on IPhone and using your code receive always same error : "The server encountered an error processing the request".
If I use GET calling all is right but with POST data I receive this err...
Hi Guys, I have an image that is 320x480 and upon orientation change this image obviously hangs out of view. There are some images where the focal point of it sits with it's bottom cut off (which isn't undesirable). My issue however is when the user pans vertically to see the full image, the view appears to snap to the bottom meaning th...
My app will create an object. That object will continuously run one of its method, let's say batch processing pictures.
If its method is running, and I release the object and it is dealloced, will iOs automatically deal with the method of the object? for example, automatically stop running the method of the object and avoiding bad_exec...
I try to send a photo and GPS location to server via PHP
here is the PHP part:Copy from here
Saving the Uploaded File
The examples above create a temporary copy of the uploaded files in the PHP temp folder on the server.
The temporary copied files disappears when the script ends. To store the uploaded file we need to copy it to a diff...
I have two buttons in my view. When I sent the tag value of one of them in Interface Builder they stop working. I get EXC_BAD_ACCESS error.
...
Hi,
I am using AdWhirl in my app and got a suspicious crash mid-game.
It appears to crash in the animationDidStop:finished: function which I didn't create.
Could this be a bug in AdWhirl?
I can't find this file referenced in the log:
(MMHTMLAdView.m:123)
This is the log:
Date/Time: 2010-10-21 09:54:14.861 +0200
OS Version: ...
i have a table with 50 rows .i want to select particular rows with checkmark accessory but when i select some rows and scroll down the table then i see pre checked rows.i know that table cell are reused but i want to emit this problem what can i do about this?
(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;...
Hey,
Is it possible to add push notification functionality to an already existing app?
Will it be possible if I have to change the appID?
I am asking this because I am about ready to submit my app, and currently don't require push notifications. In the provisioning portal I have already created default appID, with a wildcard Bundle Iden...
hi,
i have created a plist file other than the default one that exists.
Can i upload this plist file onto the server
I tried ASIFormDataRequest.
I was able to upload the image and text file but when i try it with plist it throws error at point shown in bold:
Code:
networkQueue = [[ASINetworkQueue queue] retain];
NSString *filePath =...
Hi,
I want to get nearby cities from current location depending upon distance, e.g, cities in radius of 100km,200km etc using the gps of iphone. How can i determine these cties as gps only gives the details of the current location.
Thanks in advance
...
[cell.detailTextLabel setBackgroundColor:[UIColor blackColor]];
doesn't work. Any way to make it work?
Thanks
...
hi i am making an app in which user sends xml to server and get response....
now i have to save the date and time of sending and response of that request....for this should i use iphone's date or check it online?
because my thinking is that the iphone's date and time may not be correct.....always...so it is better to check the time on...
Hi,
I have UIPickerView component that receive data from its datasource (NSMutableArray) which is populated from sqlite.
When user click on button new data row is added to databse.
Now I need to reload UIPickerView to display fresh data from datbase.
I know that I need to use method [storedDataPicker reloadAllComponents]; somehow but I ...