Tagged Questions
0
votes
0answers
7 views
cell.selectedBackgroundView covering up UIViews in a cell
I have a table. Within each cell of a table, I created a simple bar graph (which is just 2 UIViews with background filled).
I have set cell.selectedBackgroundView to an image.
When the cell is ...
1
vote
0answers
63 views
UIView fills background when scrolling on a UITableView
I'm having a problem with my UITableView. A UIView in the cells (the light grey background) seems to fill the cell for no apparent reason when scrolling.
Here's how it should look:
Here's how it ...
0
votes
1answer
37 views
Can not get touch event when UIView outside of UITableViewCell
We have a table cell and a drop down list(which customized via table view). the problem is when we add drop down list to a table cell content view, and open it, drop down list cannot get touch event.
...
5
votes
1answer
148 views
Frame of header view changed forever after deletion of UITableView's section
I'm reusing headers, keeping them in dictionary where section number is key and header view is value.
After I animated deleted one section and reload another one, header views of only these sections ...
0
votes
2answers
57 views
Filtered array returns empty, and I'm not sure why?
I'm using a PickerView to filter an existing array (called "Strains"), and the filtered array is called, "searchResults". Not sure why, but for some reason my app is saying that searchResults is empty ...
1
vote
1answer
45 views
Adding several custom subviews throughout UITableView (settings panel)
I have a slide-out UIView which is acting as a settings panel. The view has a container with a table view controller within it. The table view itself has about 6 groups of static cells which represent ...
0
votes
1answer
27 views
tap gesture on containing view blocks tableView selection
UITapGestureRecognizer *singleFingerTap =
[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleSingleTap:)];
[self.view addGestureRecognizer:singleFingerTap];
}
...
0
votes
1answer
62 views
UIView not appearing on top of UITableView
I have a UIViewController with a UITableView on top of it. I am trying to put a small UIView overlay on top of the table view. I added it both programatically (and used bringSubviewToFront), and then ...
0
votes
1answer
38 views
Issue implementing STHorizontalPicker in iOS
I am trying to implement STHorizontalPicker open source code in Table Views.I am using XCode 4.6.2. I have imported Quartz core framework and have implemented this code in the ...
-1
votes
0answers
14 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
2answers
49 views
Draw graph on uiview with animation
Hello Everyone,
I would like to create a similar view like in the attached image. I can do this easily with the help of UITableView but I also want to draw a graph above of this tableView. I am ...
-2
votes
0answers
7 views
UIView decorations [closed]
I am trying to create a certain effect in an IOS app for iPad wherein I can put a UIView or UITableView or what have you into another view and have it look as though it is scotch taped, thumbtacked, ...
0
votes
3answers
75 views
why the table view cells are messed up after refreshing some rows?
I am using UITableView to list some images from Internet. So i use AFNetworking's setImageWithURLRequest:placeholderImage:success:failure:methord, when the image is downloaded, i need to do some ...
0
votes
2answers
81 views
Increase height of UIView above UITableView
I added a UIView above a UITableView via the storyboard. I was wondering if there is a good way to increase the height of the UIView programmatically and push down the table cells. The UITableView ...
0
votes
2answers
74 views
Creating an editable Table View in iOS?
I am trying to create an editable table view in iOS using .xib files.
My code looks like this :
viewController.h
#import <UIKit/UIKit.h>
@interface ViewController : UITableViewController
...
0
votes
1answer
64 views
Dropdown UIView inside UITableView Section Headers
I need to add a customised dropdown UIView into the UITable section header as part of the design requirements. I have successfully added the the dropdown UIView into the section header but when I try ...
1
vote
1answer
121 views
Make UIView scroll with UITableView but pin to top out of view
I currently have a view controller that is comprised of a Navigation bar, followed by a UIView that has two UIButtons added as subViews. There is then a UITableView underneath that begins at the ...
0
votes
3answers
57 views
Is it possible to have a UITableViewController hide its cells until there's content, and in the meantime display a “no content” message? [closed]
Similar to how Apple did it in their music app:
I want to have a UITableViewController, but how would I best go about only showing the cells if there's content, otherwise show that "no content" ...
1
vote
4answers
111 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 ...
-1
votes
2answers
86 views
How do I put a UITableView into a UIView
I am trying to put a UITableView into a UIView. The UIView will contain some other stuff as well, so I want to want to define a part of the UIView to be used by the UITableView. Reading on this and ...
1
vote
1answer
142 views
Pass touch events from UIView on top of UITableView
I'm trying to build a custom table view with a UIView overlaying it. I'm trying to recognize a special gesture on the regular UIView, specifically a pan gesture that takes a double tap to activate it ...
0
votes
1answer
25 views
Load a TableViewController on an animated UIView
Is it possible to load a UITableViewController on a UIView?
I followed this tutorial in animating a UIView, but I want it to load a UITableViewController. The reason why I need to laod a ...
1
vote
1answer
91 views
Use a nib as a table section header with nib class
I want to create a section header that loads a nib file and sets that as the header UIView. This nib file will also have an associated class where the outlets and actions are connected to so I want to ...
-6
votes
2answers
275 views
Multiple UITableview in Single Viewcontroller
I have a view controller in that i want to show 3 tableviews(because the content and the table properties are different ) .How do i add these delegate methodes for 3 tables in one view controller??
...
1
vote
2answers
55 views
Limit animation to parent view
I have a UITableViewCell and I animate it's content out and in. But I want to limit the animation so that when the text goes outside of the UITableViewCell it's not visible in the ViewController.
The ...
0
votes
1answer
94 views
UITableView Background Scroll but NOT Repeat
I am trying to set a UITableView background using the following method:
[self.tableView setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"backgroundImage.png"]]];
This works ...
1
vote
1answer
29 views
highlightedTextColor in case of editing in UITableView
I've a UITableView with custom cell, which contains some labels with highlightedTextColor:
myLabel.highlightedTextColor = [UIColor whiteColor];
This works fine until I decided to make my table ...
1
vote
1answer
102 views
When creating my UITableViewCells, why is the init never called? (Resulting in blank cells?)
In my UITableView, I recently changed the structure of the cell from formerly just putting UILabels in the contentView of the cell, to adding two UIViews (CellFront and CellBack, on top of one ...
2
votes
1answer
48 views
UIView not remembering its tag
Am I using the UIView tag property incorrectly? Why won't it remember its tag?
When I check it in the debugger it says its value is nil.
0
votes
0answers
63 views
Why is my UITableViewCell's properties not being set properly?
I have a custom UITableViewCell which has two UIViews (CellFront and CellBack) that allow me to slide the CellFront (revealing CellBack) to achieve a cell sliding effect similar to the app Reeder.
...
1
vote
3answers
84 views
How do I have a UITableView with two different cell types and set each of the`cell layouts up programmatically, instead of via a Storyboard?
Previously I had this set up with a storyboard, having dragged the UILabels, positioned them and sized them whatnot on the UITableViewCell I dragged them onto, and then do a different version of that ...
0
votes
2answers
46 views
iOS InterfaceBuilder: SearchBar wont show when y position is changed
I have a UITableView with a search bar inside a UIview. I changed the Y position so that the UITableView is moved down, but when I load the app the y position seems to be reset and is moved up. How do ...
1
vote
1answer
68 views
UITableView scrolls beyond the bounds of my uiview
in my view i added another view (named popupview) for custom popover like animation.
In the popupview i have added a table view with in it and have set some bounds to the table view..
but the ...
0
votes
2answers
181 views
How do I remove the border from a grouped UITableView's cell?
The little white stripe at the bottom really throws off the design and I can't seem to figure out how to remove it.
This question had a high rated response that said to do this:
...
0
votes
2answers
75 views
iOS: Removing UIView that's on top of UITableView leads to inability to interact with table
I have a UITableView with a bunch of rows. When a user taps on a row, a custom pop-up (which is a custom UIView) will appear on top of the table:
- (void)tableView:(UITableView *)tableView ...
0
votes
0answers
75 views
How can i show a bottom to top popupview with tableview?
I have a storyboard application and i want to create a bottom to top popup with,inside that a tableview.The table view contains a UISlider controller for controlling the brightness of screen.
...
0
votes
0answers
73 views
UITableview custom section view move to the top
I have a UITableview where I use view for header for section method to customize the view like a drop down so that,when I select the particular button on the section header view the cell for row ...
0
votes
2answers
100 views
Inconsistency between UIView and UITableView in background image
I have a tab bar controller containing two tabs: UIView and UITableView controllers.
I'm trying to have the same background image in them, but the problem is that the image is resized in the ...
0
votes
2answers
54 views
How do I embed a table view within a UIView similar to how it's done in iBooks for font selection?
I want to implement something similar to how iBooks embeds a UITableView inside of a UIView for font selection, but I'm not sure how. Could anyone explain how this effect could be achieved?
(Note: ...
1
vote
1answer
49 views
Handling an empty UITableView. Print a friendly message
I have a UITableView that in some cases it is legal to be empty. So instead of showing the
background image of the app, I would prefer to print a friendly message in the screen.
This list is now ...
0
votes
3answers
77 views
Programatically created UITextField hides other controls
I've requirement to create dynamically some controllers. In the image provided here I've programmatically added an UITextField (name), which hides UITableView.
UITableView is hidden by default. ...
0
votes
1answer
27 views
How to make UITableView Recoqnize the category you make?
I make this simple program:
-(void) vPrintAllSubviews
{
[self printAllSubviewsWithDepth:0];
while (false);
}
-(void) printAllSubviewsWithDepth:(NSUInteger) depth
{
UIView * theView= ...
-1
votes
3answers
122 views
Passing data from UIViewController to UIView
I have a table in an UIViewController, I also have a sub view which is UIView.
I was trying to pass data from my UIViewController to the UIView:
MainViewController:
- (void)tableView:(UITableView ...
0
votes
0answers
24 views
EGOTableViewPullRefresh not showing background
I am using this library: EGOTableViewPullRefresh I have it all set up like the example and it works. It is when I start customizing the appearance that things go wrong. My code:
...
0
votes
1answer
168 views
UIScrollView Inside UIView set as tableHeaderView not scrolling
I'm running into an issue where I have a uiview at the bottom, where I need to add a few labels that I want to remain static. Then I'm adding a scrollview on top of the uiview with some scrollable ...
1
vote
2answers
169 views
Expandable and Collapsable UITableViewCell with Custom Views
Not Getting any Idea on how to solve this ....
Ok. This is my custom UITableViewCell with three different Child Views. That you can see with different colors.
Here , Height of my second Child View ...
0
votes
2answers
118 views
Shifting table view position and hiding views
My design consists of a search bar at the top and then a table view below. However, there is a nuance that requires me to display an image and a label to below the search bar and above the table if ...
2
votes
2answers
217 views
UITableView in UIView in UIScrollView. When scrolling tableview don't scroll scrollview too
I have a UITableView inside a UIView inside a UIScrollView.
Problem: when i scroll/drag the tableview, the scrollview scrolls too.
What i need is for the tableview not to pass the scroll to the ...
6
votes
1answer
372 views
Add UITableViewCells between 2 UITableviewCells in an UITableView with an animation
Right now I am making an iPad app that involves a UITableView that involves UITableView Cells that slide left and right, I have a NSNotification based system of letting the UITableViewController know ...
0
votes
1answer
64 views
Adding UITableViewController.view as subview behaving badly
I am trying to animate a tableview into my view, however I cannot get the data in the UITableView to appear (NAConversationViewController below is a subclass of UITableViewController):
Post *post = ...





