I have noticed a change in the look of the tableview cells in iOS 5, and I googles around a bit to see if anyone else had noticed. This fellow did, and posted this image. I can't reproduce it on every uitableview (if I could I would know where it came from and I could get rid of it), but it is certainly causing me a problem on one of my tableviews. Has anyone else noticed this - better yet, has anyone else found a way to get rid of it?
White Line at bottom of UITableView Cell at end of section in Grouped TableView (iOS 5)
7k Views Asked by SAHM At
2
There are 2 best solutions below
Related Questions in IPHONE
- UIWebView Screen Fitting Issue
- ios responsive design not working (too wide in portrait orientation)
- Setting View orientation to portrait is ignored
- How do I add custom cells to TableView in Swift?
- UIWebView not loading URL in simulator
- What is the limit for number of subscribers to a stream(publisher's) in opentok/tokbox iOS SDK?
- How to generate request format for WCF web service method for Mac and iPhone
- Difference between gethostname() and [NSProcessInfo hostName]?
- How to force close ipad/iphone keypad when input element is not focused using JS?
- iOS app rejected because of in-app purchase
- iOS coordinates for iPad and iPhone game using spritekit
- What is the best practice when making a storyboard for iPhone and iPad?
- Labels properties changing in Xcode
- Terminating app due to uncaught exception
- Exchange plist data between 2 iPad using iCloud
Related Questions in USER-INTERFACE
- Perl Command Line Interpreter crashing on exit
- Android - How to check for button click in a custom alert dialog box?
- Working towards a more advanced graphics game
- Use GUI displayed results of SQL query vs new queries?
- Efficiently design method to construct a Java GUI?
- Implementing callback function for dialog-based application
- Ui-router URL changes, nested view not loading
- Dont see anything inside my jframe
- Sliding Card Design
- Display value of Y axis inside GUI plot
- Sash becomes lost after resize
- Java Swing Drawing Rectangles
- How do I convert point to local coordinates?
- WPF Workaround to add Window control as a child of visual
- Developing multi page app like Viber interface using Qt Quick?
Related Questions in UITABLEVIEW
- cellForRowAtIndexPath and prepareForSegue return different label colors
- Change background of an Accessory View in a UITableViewCell
- How do I add custom cells to TableView in Swift?
- Xamarin Table View Crash
- iOS, swift, move UISearchBar from tableHeaderView to UINavigationItem
- Data Hierarchy with Table Views in iOS
- Is there any way to delete a row from a PFQuery if a condition is met?
- iOS UITableViewCell setSelected:animated: always has animated = NO
- Can UIStackView also be used within a UITableViewCell?
- No image on custom UITableViewCell
- How to enable swipe to delete on custom UITableViewCell Objective-C
- In UITableViewCell, UIImageView content repeats after some cells using AFNetworking
- Proper way to select/unselect buttons for cellForRowAtIndex
- Swift: Display image from UIImage array in table view
- How can I prevent the keyboard from covering up subviews on a UIViewController?
Related Questions in IOS5
- Best Way to add a tabbarController in a UIviewController which have a navigation controller?
- self concept ,if i use self in class method not in instance method
- Core data performance on ios 5
- search bar with table view in ios
- Is it possible to create in app purchase for local notifications in ios?
- Perform some action depending upon the text in the inbox of iPhone
- Issue with auto rotation
- Xcode 5 : Different screen sized iPhones Autolayout views resizing issue
- Augmented reality - move object across overlay
- How to move the curstor to a selected UIText Field in IOS Programming?
- UIImageview disappears while roating the device
- return an undefined value with forge.prefs
- Difference in deprecation status for UIImage method stretchableImageWithLeftCapWidth:topCapHeight: in doc and header file
- How to get Facebook Page News Feeds only but Without FaceBook Login in iOS 5?
- using multithreading to log in in iphone?
Related Questions in VISUAL-GLITCH
- SFGUI rendering issue c++
- Weird bootstrap grid fail?
- SWT drop down menu button visual glitch
- JEditorPane translucent background selection bug
- Visual Studio display glitching out
- CSS - Elements visible outside of overflow - Glitching - Weird visual bug I can't explain
- Glitchy CSS dynamic linear-gradient on scroll
- What can cause banding textures in OpenGL?
- CSS fixed header overlapped by elements only when they are transparent
- Why are there these weird visual artifacts when scrolling my BufferedImage? And how do I prevent them from happening?
- Octave's comand window glitches when I run a script
- Png Image inside a UIWebView Glitches
- Sidebar Div Pushing Main Navigation Down
- White Line at bottom of UITableView Cell at end of section in Grouped TableView (iOS 5)
- How to force emacs recolor
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I had this issue, on an iOS4 phone or simulator it looks fine but for iOS5 it was a problem. I discovered that the issue was with the separator style for the table view. It looks like the default value is set to etched for iOS5. I have gone through my code and added the following line to my init method for all grouped table view controllers:
Which has fixed the issue for me, although I also set the following as the color appeared to be white not grey as in the previous version:
It was a problem for me as I have changed the background on all of my table views and the extra line didn't look good for my app.