Hi, colud somebody tell me the way to do UITableView expandable/collapsable sections in UITableView as below?
http://cdn.mashable.com/wp-content/uploads/2009/07/beejive1.jpg
or
http:\\2aday.files.wordpress.com\2007\07\iphone1.png (sorry, cannot post more then one hlynk)
...
Hi, every dear friends
I'm using Instruments to monitor memory usage. I notice that memory always increase and not release anymore on my UITableViewController. I don't understand why. Following I list my codes
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
int row = [inde...
Hello,
I want to load an application bundle file in iPhone OS?what is the procedure to do it?
...
Hi,
I need to create cartoon image from original image, so i searched about it and i got GLImageProcessing source code. But it could do one thing at a time like brightness, hue, saturation etc.
I think i need to apply different mode to single draw only then i could get cartoon image. Does anyone know that how to do this?.
Or else any...
In my application, when I am not filtering my table, when I tap on a cell, its frame height is increased in order to display a UIProgressView that shows download progress.
However, when I filter the fetched results controller data with a UISearchDisplayController, the cells in this filtered table view do not behave in the same way.
In...
I'd like to be able to debug my application in the iPhone emulator. The app uses the Media Library Framework so I'm not really sure whether I'm able to add songs to the emulator and actually try out the app there. Is this possible?
Right now I'm just using the iPod directly for this...
Thanks,
rui
...
hi expert, i found few snippet from online to upload image from iphone to the server folder, its showing to use server side scripting eg. use php at server side
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
echo "Uploaded!";
}else{
echo "Not Uploaded!";
}
/>
is it any possibilites to upload image...
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?
...
Whenever I get a pop-up through the iPhone OS for APNS testing
there are 2 conditions:
application is running
application is not running
If I click on the view button of the popup through the iPhone OS then
which method is called if application is running?
If application is not running?
...
What are the formats supported by the iPhone in the APIC (album covers) field of ID3 tags?
...
I have to get the number from France-number-style string: @"30.000,00"
When I use NSNumberFormattern to parse
NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
NSNumber *priceNumberValue = [numberFormatter numberFromString:@30.000"];
It returned 30, my expected return is 30000
I try to use other options
NSLocal...
I am a complete newbie working on my first iPhone project. I have been a .NET developer for 4 years to give you some background on where I am coming from. I am trying to follow the MVC pattern and do things the right way on my first project. I don't want to hack things together just to get them to work.
Here is my situation:
I am trying...
Hi,
i have done the following...tran is a UIView...doSomething is a methos in UIView.but i cant
call that method from viewdidload? any help please?
- (void)viewDidLoad
tran *m_view = [[tran alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
[self.view addSubview:m_view];
[m_view release];
tran *s = (tran *)self.view;
[s doSomthing];
[s...
hi, i am using CGPDFDocumentRef to display Pdf document.How can i take the text from pdf to display in different style in UITextview?any help please?
...
I want to write an iPhone app, that will need to do a distance based search (eg. find results within 100km)
I'm not concerned about what storage technology is used, as long as it is stored on the device
...
Hello,
I got stuck while adding records to contacts of iphone.
Situation is this I have a view in which contacts are created and inserted to contacts of iphone.
What I want is
Is there a way to find some unique ID of the (record) contact which is inserted. Which will be required to access the contacts in some other view.
Please en...
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 isn't ideal so a list of coords that are definitely clickable would be much better.
So far I have this the view passed in is top level wind...
can anyone guide me to make use of this function , because i need to create avcard for the contact added in address book
sample code or example would be very usefull
...
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 animation without using UIView' support(i.e. [UIView beginAnimations::]. The desired effect I want to achieve is similar to what in Micros...
I managed to compile Poco C++ 1.3.6 library for iPhone by the following commands:
./configure --config=iPhone --no-tests --omit=Data,Cryptor,NetSSL_OpenSSL
./make
Then I created a new view-based Application for iPhone and add Header search paths and changed my .m file to .mm. And then I added the newly compiled .a files into my Xcode ...