I ve got Audio class with 3 properties: Artist, Titlle and Duration. As you can see (on screenshot) i ve put 2 props succesfully. How to put duration into UITableViewCell where i ve written "Duration" if it s possible?
Timur
页: 1
I ve got Audio class with 3 properties: Artist, Titlle and Duration. As you can see (on screenshot) i ve put 2 props succesfully. How to put duration into UITableViewCell where i ve written "Duration" if it s possible?
Timur
页: 1
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:...............
UILabel *durationLabel =[[UILabel alloc]initWithFrame:CGRectMake(250,12 , 60,20 )];
durationLabel.textColor = [UIColor blueColor];
durationLabel.backgroundColor =[UIColor clearColor];
durationLabel.tag=55;
[cell.contentView addSubview:durationLabel];
[durationLabel release];
}
UILabel *label=(UILabel*)[cell.contentView viewWithTag:55];
label.text = @"vijay";
I have a string of data in a plist, which I ve got to display, hierarchically like this: Menu>Chapter>SubChapter>item>item details This might be super simple, in my initial menu, how would I have ...
I have a UITextField that is a subview of a UITableViewCell. When my view loads, I want the text field to become first responder. I have a pointer to the text field in the table cell, so to do this I ...
Is there any way to disable the "selectibility" of a UITableView row? Example: I would like to make an appointment for a haircut at a certain time with a certain stylist. What gets displayed to a ...
I d like to mark a tableview row in some way that shows it has been clicked by the user. I have a large number of rows and want users to know if they have already visited a particular row. This same ...
Right now I am creating a UITableView in a FlipsideView nib. I don t seem to be able to change the background of the table view from within interface builder. I can fix this by creating an outlet ...
Can someone help me create an index/count button for a UITableView, like this one? iTunes http://img.skitch.com/20091107-nwyci84114dxg76wshqwgtauwn.preview.jpg Is there an Apple example, or other ...
I want to determine when the index (transparent alphabet) along the side of a UITableView is tapped. To be more specific, I have a sectioned UITableView that has an index, and said index does the ...
I have a UINavigationController and I have seperate UIViews that I switch between using a UISegmentControl. On switching the views, I add the view as a subview to my navigation controller s view: [...