Hi, I have a with Table editing in iPhone. I'm using Delegate and Datasource in my project.
The problem is when we click Delete disclosure, i'm not getting Delete button.
I'm a newbie in iphone programming. So please help me.
Thanks in advance.
...
So, I have this UITableView. It's in an iPad application. Some of the cells have an accessory button on the right (the small round arrow). When that is pressed, I present a popover view where the user can select actions related to the table cell that they touched. So far, nothing of this is difficult or exceptional.
But the popover view...
I have set the background colour of my UITableView to clear so that I can see the UIWindow. But I want to change the image presented (from background.png), depending on my selection. An example would be:
If (selection = 'blue') then image = bluesky.png
if (selection = 'green') then image = 'greengrass.png
thx,
wes
...
I am developing an iPhone app that requires an image to be in a cell in a tableview. In the CNN App if you quit the app and then stop it in multitasking it keeps the images for the next time the app is started up. How do I do this for my app?
...
Hi,
i'm trying to immitate the count-label that is used in apples mail app, which shows the count of messages in a folder / mailbox. The text color is white, and the labels background is gray/blueish with rounded corners. (screenshot)
To get the same look, i made a custom UITableViewCell for my table, and tried to style the correspondi...
I like how Facebook has the "Load New Posts" at the top of the UITableView. Is that just a header "view" to the UITableView? And how do they load the UITableView so its hidden, i.e. the first cell of the UITableView is aligned with the top so you have to actually scroll down to see the "Load New Posts" area?
Thx
...
I want to apply a special background to the first cell in my UITableView:
I am applying the bg in:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
This is how it is applied:
if (indexPath.row == 1) {
cell.contentView.backgroundColor = [[UIColor alloc] initWithPatternI...
I have a multiview application using a tab bar to switch views. One is a pickerview while the other two are a table view and a view with 4 text fields (and one other table view that just contains instructions on how to use the app). I want to use core data to save selected rows in the picker view and also save strings that are entered in...
The music app on the iPad has quite a lot of interesting custom UI features, one of which is the table view displayed when looking at the albums of a particular artist.
It has images along the side of each section, almost acting in a very similar fashion to section header views. If I scroll down, the top image stays there until the next...
I am having a problem with the background color of my table view. In Interface Builder, I have the background color set, and it shows correctly there. When I run my application, however, there is no background color there (it is the default white).
I have discovered that I can set the background color in the table view delegate file:
...
Hi
I want to show user there is a more content below but UITableView only shows scroll indicator when we scroll the tableview. There is any way, so I can show scroll indicator always
...
Hi All,
I'm starting out with iPhone development, and have a bit of a problem with programming a UITableView which is a subpart of a regular UIViewController.
The Problem:
When tapping a row, the didSelectRowAtIndexPath generates an EXC_BAD_ACCESS (I've checked for the correct method signature. Whereas if I move the body of this metho...
Hello All,
I am having difficultied while getting the values into a table format:
The previous format was:
<table border="1" width="84%" align="center" bgcolor=#66CCFF bordercolor=#000000 height="137">
<tr>
<td colspan="2" height="33">
<p align="center">
<span style="font-size: 8pt; font-weight:700">Name</s...
Hi,
I have a grouped tableview with two sections, and I want the cells (in editing mode) to look like the "add stocks view" in the stocks application from Apple. I want the delete button to be positioned directly over the cells, and not to the left of the cells.
Any ideas on how to do this?
Thanks!
...
Hello everybody. I want to achieve something like an expand and collapse uitableviewcell. The part of collapsing and expanding on user tap has been achieved. but what i am looking for is the feature of showing more and less.
that is when the uitableviewcell has not expanded to show full view, the word more shud be displayed. and when t...
I'm diving into iOS development and I have a few questions about the iPhone Clock app.
When the user adds a new Alarm, what's the best way to store it? Using a simple plist? Using Core Data?
If you look at the Alarm tab in the Clock app, you'll notice it only shows one table cell for each Alarm that exists. How can I achieve this...
I have an UIViewController which contains a UITableView (subclassed) and another UIView (subclassed). They are on the same hierarchy level but the UIView is added last so it is the frontmost.
I overrid touchesBegan/Moved/Ended to intercept the Gestures from the top UIView: my goal is to get the selected UITableViewCell and, if double tap...
I have a custom UITableViewCell nib that has an image on the left side occupying the entire height of the cell (similar to the grouped table views in the iTunes app). I have noticed that sometimes the icons appear to obscure the separator line at the bottom of the cell they are associated with.
My question is this: in computing the hei...
I have a table view controller (VC1) which has a list of items. When people click on the items, they are taken to a view controller where they can edit them (VC2). VC1 also has the ability to search through the items, and I've built this using a UISearchController and NSFetchedResultsController. It works fine for searching, but I run int...
Hi there,
I've just started using NSFetchRequests to handle all of my table/database connections, and it was going fine until I tried to implement a table that had sections in it...
The problem is that one of my tables is sectioned based on a floating point value which can take the value of: 0.0, 0.5, 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0,...