Tagged Questions
-5
votes
0answers
37 views
I'm using a uitableview in my application to display buttons. Is this the correct way? [closed]
@implementation Level1ViewController
@synthesize tableView,sections,filteredArray,quiz,level,dispScore,levelIndex1,filteredArray1;
- (id)initWithNibName:(NSString *)nibNameOrNil ...
0
votes
1answer
11 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 ...
1
vote
2answers
43 views
Re Arranging table view rows causes crash on delete of row
Deleting of rows in my table view works fine. However If I re arrange a row I get a crash:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[Circuit ...
0
votes
0answers
41 views
reloadAllComponents doesn't work in didSelectRowAtIndexPath
I have some troubles with with a UITableView and a UIPickerView. I've created a UITableView with some units. If I click at a cell, I want to display a UIPickerView with certain content in another ...
2
votes
3answers
84 views
Async image loading from url inside a UITableView cell - image changes to wrong image while scrolling
I've written two ways to async load pictures inside my UITableView cell. In both cases the image will load fine but when I'll scroll the table the images will change a few times until the scroll will ...
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
59 views
UITableView Delete Control and Delete Button not synced
I have seen a very strange behavior of my table view:
I have enabled the UITableViewEditingStyleDelete, which shows in the editing mode at the left side of the tableView a red "-" control. If I tap on ...
0
votes
2answers
44 views
Count number of rows that contain a string in table view always returns 1
My app dynamically adds table view rows that receive a pass/fail result displayed as the cell string (in addition to a description). Im trying to count the amount of cells that receive a fail result ...
1
vote
3answers
96 views
Display UITableView like UIActionsheet style?
I have been trying to display UITableView like UIActionsheet showFromRect: style. Is there any way to do it programatically or Do I need to use image for that.
Please check the below image...
0
votes
4answers
68 views
How to create a dynamic size array
What I am trying to achieve:
I have a UITableView and I want to check whether the table was selected or not and keep in an array easy to access the YES or NO values that corresponds to that row so ...
1
vote
2answers
75 views
Multithreading in UITableView
I'm new to MultiThreading.
I have an UITableView with few rows. When i select one row there will be some action taking place in the server. So that will take some time to finish the action. So when i ...
0
votes
0answers
23 views
How to get a touchEnded event of the UITableView index bar of the right?
I have a UITableView, this table view has an index bar in the right. Everything works fine but I have a requirement to show a UIView in the middle of the table with the current letter selected from ...
0
votes
1answer
26 views
Two uitable into one uiview
So this is related to this question I asked not too long ago and I'm trying to figure out if the solution I came up with is feasible, I would try it but I'm not really sure how to start
Load a ...
1
vote
4answers
70 views
Not able to resize UITableView programatically - IOS
I have added UITableView to a view, I want my application to work fine for both iPod 5th generation and lower versions(which is smaller in size), So I resized the table view height to its view height ...
0
votes
1answer
51 views
reloading a uitableview starts at the 2nd row (or not at the first row)
Uitableview problem again. Whenever I reload my data, the tableview would reload but it seems like the data will not start at the first row. Please refer to the image below.
I tried the following ...
2
votes
2answers
49 views
How can I hide the three-line 'move' symbol on the right of a UITableViewCell in edit mode?
I have a UITableView with edit mode enabled in my -viewDidLoad method. My problem is that I don't need the three-line 'move' symbol on the right of each cell.
[tableview setEditing:YES];
...
0
votes
1answer
29 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: ...
2
votes
1answer
60 views
UITableView w/ paging & momentum
OBSERVATIONS
I've discovered some "weird" things about how UITableViews / UIScrollViews scroll in Objective-C for iOS after you've lifted your finger:
A scroll view's "velocity" (as in ...
0
votes
4answers
70 views
How to hide empty UITableViewCells showing in UITableView with plain style - IOS?
UItableView is showing with empty rows like below...
how to hide it without changing the tableview style. Do I need to resize the table View, if so how can I know the height exactly to set.
0
votes
1answer
54 views
NSPredicate/TableView only displays one item, why?
I'm working on an app where I have two entities, Post <-->> StreamType. When I create posts I assign StreamType:s like this:
// streamType == one of my default streamTypes
[post ...
0
votes
2answers
82 views
UITableView: Show selected cell background only when in edit mode
When my tableView is not in edit mode, I don't want a user to be able to touch the cells and have them highlight. But, because I have set allowsSelectionDuringEditing to YES, users can select cells ...
0
votes
2answers
53 views
Add explanatory text to UITableView like Things.app
Could anybody hazard a guess as to how exactly the explanatory text was added to the blank state Today screen in the Things to-do list iPhone app? Is it a background image or a view that somehow sits ...
1
vote
3answers
46 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
50 views
ios cocoa: How to adjust the size of the popover depending on the number of rows in uitableview
This is related to this question
ios filter options similar to the apple store (dropdown list)
I tried using a uitableviewcontroller instead of a pickerview as I couldn't understand how to use the ...
0
votes
0answers
93 views
static table views are only valid embedded in uitableviewcontroller instances for no reason
I am having the same problem as many other users- where I received the error:
Illegal Configuration - static table views are only valid embedded in uitableviewcontroller instances for no reason
...
1
vote
1answer
33 views
Final layout rendering is animated while tableview is presented
I am using the tableview in a custom developed UI control.
The default frame of my tableView is {0,0,0,0}..So it's not visible..I am using the UIview's animation class methods with blocks ...
0
votes
3answers
64 views
UITableViewCell BackgroundImage for ALL Cells
I'm setting all of the UITableViewCell's background image to the same pattern in the below code:
- (void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell ...
0
votes
1answer
35 views
UITableViewCellStyleValue1 Error
So I'm making a app
And i keep getting a error at this spot
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:[NSString stringWithFormat:@"Cell ...
1
vote
1answer
94 views
How to dynamically display parsed contents of XML on UITableView using RaptureXML and AFNetworking?
I'm using RaptureXML and the wrapper AFRaptureXMLRequestOperation that integrates AFNetworking and RaptureXML.
The code below is working fine. All is well downloading, parsing and displaying the ...
0
votes
0answers
59 views
UITableView Controller, dynamically adding rows, via web service API call, when user scroll down
I am working on an app, and one of its screen has similar interface like twiitter or facebook app feed screen interface. I am using iOS6, and my main screen has tableview controller to show the feeds ...
-1
votes
1answer
154 views
iPhone Programming creating a news feed like facebook [closed]
In my app, I have a feed screen similar to twitter and facebook app. I have already implemented pull to refresh thanks to iOS 6 table view controller.
Now I am facing challenge to implement when user ...
0
votes
2answers
54 views
UITableViewCell willDisplayCell method conundrum
Whenever I create a new cell, strange magic occurs. If I exit the view controller later (with the data all saved up), and come back to the view controller again (with the data reloaded, etc.), ...
0
votes
2answers
86 views
UIWebView shows a black screen with no content
I've created a UIWebView from the IB and subclassed it to my needs. Somewhere inside my app I'm using the following code:
_mainWebView = nil;
_mainWebView = [[MyWebView alloc] ...
0
votes
2answers
64 views
How to access values entered in a UITableViewCell?
I have a prototype table in my app witch I populate with a customTableViewCell class with a UITextField inside.
In my navigation bar I got a save button.
The question is, how to access this dynamic ...
-1
votes
3answers
54 views
UITableViewCell Reuse
I have a UITableView that is reusing cells. Some of the cells in my table are a slightly different hight than others. When reusing the cell the table view seems to add the cell at the height it used ...
-1
votes
1answer
34 views
backgroundTap hides didSelectRowAtIndexPath [duplicate]
I have a UITableView with some UITableViewCells that contain labels with suggestions for text to be inserted into a UITextView. I want that when the user taps on some uitableviewcell with text ...
1
vote
1answer
101 views
Do I need to resize UITableView while Pushing or popping navigation controller - IOS?
Every one may think, why we need to resize table view when popping a view. I have a strange problem, I have a table view with Navigation bar showing, from that view I am pushing a new view which don't ...
2
votes
1answer
34 views
Display waiting screen when user selects UITable row
When the user selects a row in my table, I need to load a bunch of data with CoreData. This takes several seconds (at least when running on the simulator - haven't tested on a device yet, but I ...
0
votes
2answers
190 views
Right Pattern for Multiple Table Views and Multiple Collection Views
I need to implement a list of items with 2 different views: text list and photo list, similarly to what iBooks on iPad does:
However, I have 4 different categories of items: movies, music, games ...
0
votes
1answer
71 views
Crash when calling UITableView's reloadData too soon after each other
I have a text field that show a table view of suggestions as the user types a name. The filtering of the data source is made in a background thread because it can take some time.
- ...
1
vote
2answers
105 views
Moving cells from one table to another in iOS
I am trying to create an application with multiple table views that uses and implements Core Data. I would like the user to be able to select cells in one table and move them to another (like in ...
0
votes
1answer
112 views
UIScrollView - Revert to starting position without snaps
I want to revert my UIScrollView's content offset if I don't drag enough:
- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(CGPoint ...
0
votes
3answers
77 views
UITableView - always select the row in the middle
I have a UITableView with over 50 rows but only 5 are shown at a time. How can I force the middle row to always be selected? For example 2,3,4,5,6 are shown, 4 will be selected.
The user scrolls -> ...
1
vote
1answer
57 views
TableView in a PopOverController
I am creating an application in which I am having a UITableviewController class and in that I am having a IB file with a UITableView in it. In my UIViewController class I am creating a ...
0
votes
2answers
50 views
iOS if statements in tableView:numberOfRowsInSection: not working [closed]
I'm trying to use view tags to determine what view is currently being displayed, but when I use this code
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
if ...
-5
votes
1answer
32 views
exception : Terminating app due to uncaught exception [closed]
Terminating app due to uncaught exception NSInternalInconsistencyException, reason: UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath:
0
votes
1answer
70 views
Images in TableView Issue
I use SDWebImage to download the Pictures from my parsed XML file, and display it in a TableView. But the problem is that some images are not shown. This it how it looks like:
This is my code for ...
3
votes
1answer
298 views
Why does auto layout in table view cells cause the table's content size to be incorrectly changed?
I'm using Xcode 4.6.1 and I have an iOS 6.1 app.
It has a table view that drills down into another table view. The second table view uses custom cells to display its data. However, there is a problem ...
-1
votes
3answers
105 views
How to delete an object from array in iphone [closed]
I am trying to delete an object from array ,when my table view gets reload, deleted object from array showing in tableview,I am using – removeObjectAtIndex: to delete object from array.
Please help me ...
0
votes
3answers
47 views
How to get accessoryType for UItableViewCell?
Please check the below code..
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// I may use this object to maintain check state.
ab_user_info *obj ...

