The UITableViewCell class defines the attributes and behavior of the cells that appear in iOS UITableView objects.
0
votes
2answers
19 views
Setting Specific UITableView rows to push in a specific detail view?
I currently have 7 rows in my UITableView and I'm using segues to push in a detail view. However, I currently have two different view controllers, and want something like this:
If row 1 and 2 are ...
0
votes
0answers
7 views
Selecting UITableViewCell in editing mode doesn't show rounded checkmark on the left
I have a UITableViewController that toggles into its editing mode when the user presses a button in the toolbar. I want the user to select multiple cells and then put a rounded red checkmark on the ...
0
votes
2answers
16 views
Better way to loading Table with data coming from server.
I am implementing tableView which loads data from server. I got two scenario:
Get complete data from the server and store in the array say 500 items. Now whenever I need those data I will call my ...
1
vote
0answers
24 views
How to segue from a dynamic table cell to a viewcontroller
I have a dynamic table which reports data from a query to a mysql DB and logs me back into cells. And when I try to make a segue to select a cell to go to another DetailViewController the script does ...
-1
votes
1answer
24 views
Add checked items to array and remove when unchecked
I have a Uitableview which has Accessory type set as "CheckMark" if the cell is selected (Checked) I want to add the contents of the cell to an array and if it is unchecked I want to remove the same ...
0
votes
0answers
17 views
How to add Pan to UITableViewCell
I am trying to add a pan to my UITableViewCells and I have the following code. For some reason the handlepan method is never being called even though I referenced the class from the storyboard and set ...
0
votes
0answers
16 views
Core Data invalid number of rows error without inserting/removing rows
I'm modifying (but not adding or removing) objects in a Core Data store upon selection of a UITableViewCell. However, whenever I do so, I get the following error:
CoreData: error: Serious application ...
0
votes
4answers
47 views
Change textlabel in static cells in UITableView
I have a static UITableView, content of each cell I've made in storyboard, but I need to change texLabels of some cells programmatically while runtime. How can I do it?
0
votes
3answers
48 views
UITableView: How to load an image only once then use it in all cells
I'm creating an app using the Twitter API and parsing with JSON and every time I load the image into the cells it's taking multiple images and everything runs slowly. How would I go on by getting the ...
1
vote
4answers
60 views
how to show images at cell.imageview.image from NSArray?
Image Array=[NSArray arrayWithObjects:[UIImage imageNamed:@"1 (1).gif"],
[UIImage imageNamed:@"1 (2).gif"],[UIImage imageNamed:@"1 (3).gif"],[UIImage imageNamed:@"1 (4).gif"],[UIImage ...
1
vote
1answer
28 views
How to implement “swipe to delete” a custom UITableViewCell in a UITableView which is not in an UITableViewController?
Can someone provide the source code to do that?
I set the data source and delegate and tried
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
return ...
0
votes
1answer
21 views
UIImageView in a custom UITableCiewCell dimensions and resolution
I'm trying to use a check mark in the UITablewViewCell which is a custom cell that has 3 labels. The problem is that no matter what resolution or dimensions I use for the check mark image, it's looks ...
0
votes
1answer
32 views
Gradient effect to left half portion of UITableViewCell in iOS
Is it possible to make only half portion or half layer of UITableViewCell gradient in iOS?
I am using following code.
-(void) addGradient:(UITableViewCell *) _button {
// [self ...
0
votes
1answer
39 views
How to load table view cell order by some fields from soap?
I displayed sales details of gas station from soap on labels.I used labels for display but it is not useful for users.
Here my app is empty.I input dates and station name from textfields.
Here ...
1
vote
1answer
43 views
UITableViewCell resizing won't affect touch area
I have UITableView where cells are taken from UITableViewCell created with Interface Builder (xib) file.
The problem is the touch area of the cell is unaffected regardless of the cell's frame. Is ...
-1
votes
2answers
34 views
Static UITableViewCell returns nil on CellForRowAtIndexPath, but only for certain sections
I have defined a table view controller using static cells in a Storyboard scene.
The table view itself contains six sections, each of which contains one or two cells.
I write data to the cells from ...
0
votes
2answers
51 views
Increasing the space between header and table cell in iOS
So my UITableView has a header, which is the UIImageView shown, and comments below the image. I am trying to increase the space between the image and the comments table.
(I have tried increasing ...
0
votes
1answer
44 views
UITableView resizing when adding item
Im currently working with an UITableView and I´m resizing it with the following lines of code:
[UIView animateWithDuration:0.25 animations:^{
[self.tableView setFrame:CGRectMake(0, 0, 320, 177)];
...
0
votes
1answer
53 views
Label in custom cell is null when populating UITableViewController
I'm using Xamarin.iOS to build an iOS app. I'm using a storyboard and have created a UITableViewController with a grouped table using custom cells. The cell contains a label to which I want to assign ...
0
votes
0answers
19 views
IOS Autocomplete Table Blocked By UIGestureRecognizer
I've seen this question around a few times, and I believe I've implemented the recommended solution, but I still can't seem to get my app to work. The problem is, I have a UIGestureRecognizer in my ...
1
vote
1answer
32 views
UITableview animation in iPhone?
I need to animate each cell, when the user turn to show tableview from screen1 to screen2.
Is it possible to do that, please help me.
Thanks in Advance
I tried this:
- (UITableViewCell ...
1
vote
2answers
50 views
Maintain state of Accessory view in ios
I have a dynamic table in which user can add & delete the data. The table displays the shopping list. If the shopping is done user should be able to tick the desired item and should be able to ...
-1
votes
0answers
12 views
How do I change the frame of the indexed UITableView?
I want to change the frame of UITableViewIndex, what should i do?
for(UIView *view in [self.tableViewContent subviews])
{
if([view respondsToSelector:@selector(setIndexColor: )])
{
...
0
votes
4answers
48 views
How to change blue highlight color when a cell is selected
I know it's probably a duplicate, but I want to know the best and the fastest way to change the blue highlight color when a cell is selected.
Of curse, I already tried (and it works) the way which ...
2
votes
2answers
49 views
Images in UITableViewCells are loading wrong
I'm working on an app where I wanna show images, nearly as big as screensize, in a UITableView with custom cells.
The Images are loading good, a bit slow but they load, but when I scroll in the ...
0
votes
3answers
74 views
iOS - UITableView scrollbar goes out of screen
I am new to iOS and i have some serious problem i don't know why this happened, i also tried to find out the reason behind this but i failed.
I am creating a app in iPhone which take tweet of ...
0
votes
3answers
60 views
Pickerview value on uitabelview cell
In my application i have implement the functionality as follows,Tabelview cell contains two button on click it shows the picker view,When i select picker value its not reflecting on uitabelview ...
0
votes
1answer
30 views
textfield text leaves an impression on other textfiled when tableview is scrolled
Hi guys I have custom tableview cells called product cell,rating cell,notify cell,where product cell contains textfield where it used in section 0,1,2,4. the problem is if I input a text in the ...
0
votes
4answers
60 views
UITableViewCell style and dequeueReusableCellWithIdentifier
So I register my cell:
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"Cell"];
- (UITableViewCell *)tableView:(UITableView *)tableView ...
1
vote
2answers
40 views
UIImage bigger than custom UITableViewCell
I have an UITableView with an custom UITableViewCell. In the cell, for style purposes, I have an UIImage that is much bigger than my custom cell, and what happens is that the image isn't cropped and ...
0
votes
1answer
22 views
Fast UITableViewCell with a UIWebView ?
Problem:Fast UITableViewCell with a UIWebView
Using UITapGestureRecognizer achieve UIWebView click event,but when click link in UIWebView, UITapGestureRecognizer and Link event will be triggered. ...
0
votes
0answers
34 views
iOS Auto-Layout: Dynamic height for table view cell
I have a table view with a bunch of cells (custom cell, which only has its content view).
In tableView:cellForRowAtIndexPath: I'm adding a predefined UIView (which has several subviews) to the ...
0
votes
2answers
34 views
How to make UITableViewDataSource ask for cell height before each cellForRowAtIndexPath call?
I have many cells which contains several resizable UITextViews. I want to make dataSource to call heightForRowAtIndexPath before every cellForRowAtIndexPath call, not only when table is reloading ...
-3
votes
4answers
87 views
Tableview doesn't fire cellForRowtIndexPath
My situation:
I've got datasource and delegate connect in the storyboard
I've got for my UITableViewCell and identifier and also in code defined, etc.
I've got the array with data for my ...
0
votes
3answers
57 views
Adding NSArray items to UITableViewCell content view
In my app i am adding 3 UILabel to each Table view cell in the following way.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static ...
0
votes
0answers
34 views
UITableViewCell preserve selected on UITableView scrolling
I have UITableView on iPad. When a cell is selected and the cell is scrolled off the screen, and then scrolled back into the screen, the selected cell is blank.
My problem occurs only on the device ...
0
votes
1answer
35 views
How to update the UITableViewDataSource when inserting new sections or deleting sections on UITableView?
I've a UITableViewDataSource which maintains sections of data items which will be presented by an UITableView instance. The table view is editable, allowing insertion and deletion of rows and ...
0
votes
0answers
7 views
UITableView change during delete
I have a UITableView cell that has a custom label inside to handle the variable height. There is also an UIImage on the right and left.
When the table is toggled into edit mode, I want to inform and ...
0
votes
0answers
94 views
iOS: After app update my app crashes because of new cell in TableView
I have an iPhone app in the app store, which has in the settings menu a section with 4 cells (grouped static cells).
I have added now one new cell to this section. When I update the version from the ...
-1
votes
2answers
21 views
Table View Cell Stays Highlighted
I have a table view that works just fine. The only thing is that when a cell is selected, it stays highlighted. So, if i tap a cell to go to another view and hit the back button on my navigation bar ...
0
votes
1answer
10 views
Custom PFQeryTableView
I'm using Parse.com and I'd like to make a PFQueryTableViewController display sort of a calendar. It roughly looks like this.
Something that I totally don't understand is how am I able to write my ...
-1
votes
0answers
35 views
How to change the uitableviewcell data on moving the cells
I am new to iphone programming.
I want to populate the table view cells with some data and the row number.if i moved the rows the row number has to update for all the cells.
please help me out
1
vote
2answers
44 views
UITableViewCell clipsToBound not working
In my custom cell I have written [self setClipsToBound : YES] and then adding these red imageViews as its subviews as [self addSubview:imageView]
But as you can see the imageView is not getting ...
0
votes
1answer
27 views
Border color of UITextField view in UITableViewCell
I am trying to set the border color of UITextField inside dynamic cell of UITableView.
That's the code:
UIColor *searchBorderColor = [UIColor colorWithRed:160.0/255.0
...
0
votes
2answers
48 views
Custom UITableViewCell setup everything in init* or use properties
I'm wondering what is the best approach/design when using custom UITableViewCells.
One way I'm doing it is having a init that takes all parameters necessary to setup the UITableViewCell. Like ...
0
votes
1answer
19 views
Working with NSArray and NSDictionary to store facebook friends to later be used in application
I am trying to work with NSArrays and NSDictionarys to store the users facebook friend information. The data will later be used in a table view.
Ideally I would like the information to be stored ...
0
votes
1answer
62 views
how to load a popup from an uibutton in uitableviewcell
In my app i've got a view controller with a table view.
Inside of one UITableviewCell there's an uibutton which, on click, should show a popup view.
Inside my project i've already imported KGModal ...
0
votes
3answers
38 views
UiTextView in Custom UiTableViewCell does not responds to didSelectRowAtIndexPath
I have a UITextView on a custom UITableViewCell and when I click on the UITextView, it does not trigger the didSelectRowAtIndexPath, how do I change this behavior so that that delegate is called as ...
0
votes
4answers
67 views
How to add new UITextField to a custom UITableViewCell when return key pressed with animation
For example in iphone contacts application,in add address cell, when user typing in the "street" text field , another text field with place holder "street" is add below the current text field with ...
0
votes
1answer
56 views
how to create custom cell in tableView (swipe cell)
I want to create one application that in self has tableview.this tableView show has many cell in self.I want when push right to left in one cell display another page in cell (like yahoo mail that when ...





