Tagged Questions
0
votes
1answer
6 views
Adding UILabel to UIImageView in CellForRow
I have a customCell in StoryBoard "CategoryCell", I have UIImageView with the cell which is also part of the cell also tied up in StoryBoard. The UIImageView is filled with a plain yellow color. I ...
2
votes
2answers
56 views
Move from UITableView to a UIView on Table Cell press
I'm trying to move from a UITableView to a UIView from clicking a table cell.
I'm using a Manual Segue which is hooked up to the UITableView's View Controller and then hooked to the UIView's View ...
1
vote
3answers
64 views
NSMutableArray Display Null Value in Table View
- (void)viewDidLoad {
self.detailView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 320, 480) style:UITableViewStylePlain];
self.detailView.dataSource = self;
self.detailView.delegate = ...
0
votes
1answer
17 views
Custom Cell re-use in iOS 5.1
I'm having a hard time understanding the following block of code inside cellForRowAtIndexPath:
NSString *uniqueIdentifier = @"SliderCellWithComments";
SliderCellWithComment *cell = nil;
cell = ...
0
votes
2answers
27 views
Select the newly added dynamic row in UITableView
I am working with a MasterDetail View using SplitViewController in iPad, My Master View has a tableView where I add rows dynamically. So the newly added row sits at zero postion. So what I want to ...
0
votes
1answer
17 views
Get a pointer to controller on stack
I have a left view controller (sliding menu controller) in use for example called LeftMenuTableViewController.
When a user logs out a modal view controller is displayed but the tableview controller ...
1
vote
1answer
24 views
Updating cells with UIImageView to show currently selected item
I am using a sliding view controller which holds the main controller on top and a slide left menu controller.
The controller on the left works as the menu like Facebook/Pintrest apps etc. It is a ...
0
votes
1answer
66 views
How to reloadCells correctly
I have a navigation menu in a UITableView.
My cells are loaded with the following:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
...
0
votes
3answers
99 views
UITableView not reversing
I'm working on information retrieval where in the latest information in on top of UITableView. The code goes like this.
-(UITableViewCell*)tableView:(UITableView *)tableView ...
0
votes
2answers
37 views
ios : tableview not appearing in subview of a scrollview
I have a scrollview with multiple views.Enabled horizontal scrolling.Each view contains a tableview.I have page control in scrollview. when i drag horizontally, the views are appearing without ...
0
votes
1answer
26 views
Setting up a menu in UITableView showing the current item
I am using a slide in menu style which loads a UITableView. - ECSlidingViewController
I have about 7 cells in a table view setup as follows:
static NSString *CellIdentifier = @"Cell";
...
0
votes
1answer
78 views
Getting bad access while deleting cell and reloading table view
I am trying to build a table using custom UITableViewCell, but after deleting cell and when I try load the view, I get an EXC_BAD_ACCESS error,here i'm getting data from a dictionary and loading it ...
0
votes
1answer
28 views
Use my custom initialier to initialize my table cell (inherit UITableViewCell)
I have created my custom table cell class:
@interface CommonCell : UITableViewCell{
...
}
@end
In the implementation file of it, I have created a custom initializer method: ...
0
votes
1answer
48 views
Background of View inside UITableView which is inside UITableViewCell
I have a UITableView inside UITableViewCell. The inner tableview is of size 5 with each cell contentview of different background color and is editable.I'm able to reorder the tableviewcells of inner ...
0
votes
2answers
59 views
Accessing cell attributes outside of cellForRowAtIndexPath
I have five fields setup on a Signup controller. Username, displayname, password, confirm password and email address.
They are setup with the following:
static NSString *CellIdentifier = @"Cell";
...
1
vote
3answers
45 views
TableViewCell image change when touched
I have my own TableViewCell class which inherit UITableViewCell. On my cell nib file, I have put a image in my TableViewCell. (The image does not fully occupy the whole cell area, there are spaces ...
0
votes
1answer
39 views
Weird behaviour in UITableView
I'm developing an application using Xcode 4.6.1 for >iOS 5.0 version.
The application is simply displaying questionnaires which were fetched from server side, saved in database and allow its users ...
0
votes
1answer
94 views
How to hide keyboard with animation while scrolling tableview iphone [duplicate]
I am trying to make comment section like instagram I cam check the delegate function during scrolling as described here
But I am not sure how can I hold keyboard in between the states of showing and ...
0
votes
1answer
28 views
ios - why does my UITableView not get populated with comments
I have a UITableView which is declared like this in my .h file:
@interface EnterInviteCodeController : UIViewController
@property (weak, nonatomic) IBOutlet UITableView *itemList;
@end
And then I ...
0
votes
3answers
66 views
If I only need 1 UITableViewCell, can I create it without using a reuse identifier and all that stuff?
In the cellAtIndexPath method, could I just do something like:
UITableViewCell *cell = [[UITableViewCell alloc] init];
UILabel *label = // make label
[cell addSubview:label];
return cell;
Is that ...
2
votes
1answer
67 views
customize tableview background using tableView willDisplayCell: delegate method
I want to customize tableview background with my own images i am using the fallowing code to customize cell background view
-(void)tableView:(UITableView *)tableView
willDisplayCell:(UITableViewCell ...
0
votes
3answers
280 views
Customize UITableView header section
I want to to customize UITableView header for each section. So far, i've implemented
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
this ...
0
votes
2answers
60 views
navigational controller not passing data from tableview to viewcontroller
The code for Tableview :
-(void)tableView:(UITableView *)tableView didselectRowAtIndexPath:(NSIndexPath *)indexPath{
ViewControllerDisplayMsg *detail = [self.storyboard ...
1
vote
1answer
61 views
error with tableview reload data inside connectionDidFinishLoading (parsing by json)
I have a view-controller with tableview with custom tableview cell and after
-(void)connectionDidFinishLoading:(NSURLConnection *)connection
{}
It gives this error : Property 'tableview' not ...
0
votes
3answers
35 views
NSString has null value when concatenated
I have a UITableView with multiple sections. A section of the tableview has 2 rows, of which one is editable(insert button) and other displays a name from addressbook.
On the click of the insert ...
1
vote
4answers
91 views
UIImageview in TableView
I have to display image in tableview,i got all images but it does not display. Here Array contains 3 images, these images came from server. when cell for row at indexpath call it display only 3rd ...
0
votes
2answers
196 views
reload uitableview with new data caused flickering
I added an infinite scrolling feature and realized that whenever I reload the uitableview, the view flickers..I am not sure how to fix the flickering at this point. Please help, thanks!
I did see a ...
0
votes
1answer
11 views
How do I retrieve a image from a rss entry?
I'm currently working on a news app and would really like to add a image to a table row of the image for the news article.
I have managed to parse everything else, it's just I can't parse the image ...
1
vote
1answer
134 views
Best route to fit a UITextField to UITableView cell
I am wondering what is the best way to make a UITextField fit a UITableView cell.
I have used this method before:
@implementation UITextField (custom)
- (CGRect)textRectForBounds:(CGRect)bounds {
...
0
votes
1answer
121 views
cellForRowAtIndexPath not being called after table reload in didSelectRowAtIndexPath
I am facing a very strange issue. I am doing the following
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
[invoiceTable reloadData]; // my table
...
1
vote
1answer
91 views
fetching json feed intermittently fails in ios uitableview
I am building a simple ios app that attempts to show sequence of images from flickr. The problem is it sometimes works and sometimes fails and I am not sure where is it going wrong.
Application has a ...
0
votes
3answers
147 views
Adding buttons to a UITableView
I have setup a tableview that currently has one section, header, and two cells. For username and password, image shown below.
I would like to add a button (IBOutlet), and a label/link below this ...
0
votes
0answers
43 views
Inserting rows to UITableView causes NSInternalInconsistencyException
I am trying to add sections and rows to a rest view that contains only a tableview and 4 sections with one cell each.
public override void ViewDidAppear (bool animated)
{
InsertRows ();
}
void ...
0
votes
2answers
70 views
Setting up a UITableView inside View Controller Programatically
I have setup a UITableView controller within my view controller as follows:
fieldView = [[UITableView alloc] initWithFrame:CGRectMake(0, logoView.bounds.size.height, 320, (screen.size.height - ...
0
votes
2answers
63 views
Fix tableheader from tableview in 0,0,320,45?
I'm adding table header just like this in tableview:
TableHeaderView *tableHeaderView = [[TableHeaderView alloc] initWithFrame:CGRectMake(0, 0, 320, 45)];
tableview.tableHeaderView = ...
1
vote
0answers
154 views
UIWebView not loading content when it is passed from an UITableView in iOS6, but works perfectly in iOS5
First of all I would like to thank you reading this and helping me out if you know the answer, I am a bit of a newby to iOS and there is an issue that is driving me crazy.
I have an App that works ...
0
votes
3answers
46 views
how to load same tableview with different NSArrays depending on uibuttons tapped?
In my app i have a scroll-view and a table-View added as a sub-view and on this scroll view i have multiple menu buttons (UI Button) added as sub-view to my scroll-view.i want to load the table-View ...
0
votes
0answers
25 views
Unable to Update two tables one after another
I am trying to insert a row in two tables consecutively. First table updates as it calls all Data Source methods of UITableView, but second one does not call any DataSource method. Can anyone tell me ...
0
votes
0answers
56 views
SDWebImage's SDimageCache Error at Runtime
I started using the SDWebImage.
I followed the instructions and installed it in my project.
But when i call it inside the app through these functions error is generated.
"(UITableViewCell ...
1
vote
1answer
70 views
Blink or highlight multiple UITableView cells
Current situation: I have implemented drag-and-drop functionality feature where users can drag items from one place and drop on any allowed row in UITableView. For example, users can drag item and ...
0
votes
2answers
311 views
How to toggle UITableView Cell selected status
I have a UITableView with a custom Cell, the cell contains a UIImageView and a UILabel. Now When I load my table first time, It loads with a same image on each cell and different labels, which it ...
0
votes
2answers
71 views
How do I access an array within cellForRowAtIndexPath without getting EXC_BAD_ACCESS
I have a bug that is driving me crazy. I have an NSArray called questions. The array is being populated by a JSON response. I'm trying to use it to populate the table view.
in my header file I'm ...
0
votes
0answers
34 views
Custom table View Cell in some Location
I am building a Custom Grouped TableView and need to Display a Custom TableViewCell at indexPath.row=0 when section is 0 .I am able to show it but as soon I go to bottom of tableView all cells change
...
0
votes
1answer
38 views
How do I use both xibs and storyboard in my program?
I've made a project based completely on xibs. Now I need to add a table view whose cells will lead into the xibs I have in my project. All of the tutorials I've found for table view use storyboard, so ...
0
votes
1answer
103 views
Reload only a subView of a custom UITableViewCell
I am currently developing an app for iOS 5 and above in which a video is played inside a custom UITableViewCell using an instance of AVQueuePlayer.
There are 'n' number of such custom cells playing ...
1
vote
1answer
117 views
Passing Core Data objects--segue does not update U.I. on first try
I'm having a strange issue with updating the U.I. after a segue. It's a pretty standard design: the user selects a cell in a tableview, this triggers a segue to a detail screen which reflects the ...
0
votes
1answer
114 views
ios UITableView: How do I show the right list of data on the specific Header Section?
So I have a acouple of sections on one of my views eg:
1. My Events
2. My Matches
3. All Events
Now I want to show a couple of rows (with a limit) on each section and then add another cell that ...
0
votes
2answers
284 views
table view in popover is not scrolling
I have the code below to display popover with tableview and it works perfectly.
The tableview displays 13 numbers and I can scroll and see the same but when I release mouse-touch on simulator it ...
-1
votes
2answers
74 views
No visible @interface for UITableView when deleting a row
I know this type of questions has been asked here on SO before and I've tried almost all of them but to no avail. I'm trying to delete a row from a UITableView. Here is my code.
- ...
0
votes
2answers
102 views
Custom separator image used in UITableView disappears when scrolling the UITableView
I am using a simple UITableView and using separator as a image. When table is loaded initially it looks fine but when user scrolls up and leaves, the separator image disappears. Again when user ...





