Tagged Questions
0
votes
1answer
45 views
Two UITableViewCell have the same indexPath?
I have a problem like this:
I have a table view. when i click on a cell (or row), the cell will add 2 more buttons and re-size.
This function it work fine!
The problem is when i click first row,
...
0
votes
1answer
10 views
Determine UIWebView height based on dynamic local content, within a variable height TableViewCell
Okay, so I know this question has been asked and asked. There are many good suggestions, but I cannot get this to work as expected. I am trying to create a tableview cell that can dynamically set its ...
0
votes
1answer
29 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 ...
-1
votes
1answer
25 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
18 views
How to add Pan Gesture 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
4answers
48 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
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
52 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
45 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
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 ...
0
votes
4answers
49 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
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
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
95 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 ...
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
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
4answers
68 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 ...
0
votes
3answers
88 views
Setting Table View Cell Image
I've set the image for the cells in my table view, but the lines dividing the cells aren't showing. What have I done wrong?
- (UITableViewCell *)tableView:(UITableView *)tableView ...
2
votes
1answer
30 views
How to dynamically resize UITableViewCell based on UITableView scrolling?
I have tried looking for an answer to this question but so far I haven't got any luck.
Context
I have a UITableView inside a standard UIViewController (NOT a UITableViewController..). I have ...
0
votes
2answers
77 views
“Unrecognized selector sent to instance” when using custom table cell
I have implemented a custom table cell and am receiveing a runtime error ("Unrecognized selector sent to instance") when the table enters cellForRowAtIndexPath. The error occur when trying to ...
0
votes
1answer
28 views
Is it possible to display UITableViewCellStyleValue1 and UITableViewCellStyleSubtitle within the same row
I would like to display information below and infront of the main content in a row in a table view, is this possible?
Something like...see screenshot.
...
1
vote
0answers
46 views
UITableViewCell behaving strange
I posted a thread earlier about a strange behavior when resizing UITableView for it to fit a keyboard. I want to simulate the same functionality as for when a user sends an SMS and the UITextField ...
0
votes
1answer
25 views
Multiple UIViews in XIB of UITableViewCell
I've been trying to make a custom UITableViewCell with a UIScrollView.
I have a .xib which contains a UITableViewCell (that contains only a UIScrollView) and a UIView that is the content view for the ...
0
votes
5answers
67 views
How to know the section number on button click of Tableview cell in a UITableView? [duplicate]
I have a UITableView for which I have created a custom UITableViewCell. Each row in tableview has a button. I want to know the section number on click of a button, so that I would know that from which ...
1
vote
3answers
66 views
How to know the indexPath/row on button click of Tableview cell in a UITableView? [duplicate]
I created a TableView having a custom UITableViewCell. A button is associated with each row of tableview. Now I want to know the row number on click of a button, so that I would know that of which row ...
1
vote
2answers
47 views
Layout static table cell for iPhone and iPad
I'm fairly new to iOS dev and very new to storyboards. I'm trying to create a basic form using a UITableView with static cells and a "grouped" style.
I'm hoping to make only one storyboard and use it ...
0
votes
3answers
36 views
Can't fit an image in a tableViewCell
I have a table view with grouped cells. I want one of this cell to contain an image. Here's my code to insert the image and make it fit in the cell :
logoCell = [tableView ...
0
votes
1answer
17 views
Instagram home page feed
I am looking to make a home page feed like instagram. I have a UITabbar controller conecting all of my tabBars together. I have a Navigation bar at the top of the View. Just like this:
...
0
votes
1answer
45 views
Fixing imageview frame according to image
I am showing images downloaded from an URL in a table view whose custom cells have UIImageViews.
Now my requirement: I want to fix the height of that imageview and cell according to the height of ...
0
votes
2answers
43 views
Table Cell TextLabel frame width increasing automatically
I wish to have a table with some label and then I add a text field UI after the label.
I want the Label to be of some fixed size (say 150) and the rest of the cell width be occupied by the textfield.
...
0
votes
1answer
42 views
Setting three sided border for UITableView - IOS
For my design specifications, my table view should only have three borders on top, left, and right. I have added it using the following code....
CGSize mainViewSize = menu_table.bounds.size;
CGFloat ...







