I know how to make UITableViewCells self size in UITableView. The question is how to only a specific cell self size itself. I have four different custom UITableView Cells in my table and I want to make only one cell self size itself.
Self sizing specific UITableView Cell
302 Views Asked by uzair shahzad At
2
There are 2 best solutions below
2
Reinier Melian
On
You can check which cell you need to return dinamicHeigth and in func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat return UITableViewAutomaticDimension according
Example code using row 0 as condition
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
if(indexPath.row == 0)
{
return UITableViewAutomaticDimension
}
return 88
}
Related Questions in SWIFT
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Swift code with multiple NSDateFormatter - optimization
- How do I add multiple in app purchases in Swift Spritekit?
- cellForRowAtIndexPath and prepareForSegue return different label colors
- Getting this message in my console in xcode "Ignoring restoreCompletedTransactionsWithApplicationUsername: because already restoring transactions"?
- Change background of an Accessory View in a UITableViewCell
- fade in an bounce animation subview
- Create a PFObject and PFRelation after PFUser Sign Up
- Swift 2 - Pattern matching in "if"
- How do I give inputs through NSURL
- How do I add custom cells to TableView in Swift?
- UIWebView not loading URL in simulator
- Compiler complains that 'Expression resolved to unused function' when removing index in array of functions
- Cast from 'Int?' to unrelated type 'NSNumber' always fails
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 AUTOLAYOUT
- UICollectionView cell height/scrollable content behaving strange/incorrect
- Can UIStackView also be used within a UITableViewCell?
- How can I use AutoLayout to place view exactly above other?
- auto layout modify multiplier of constraint programmatically
- iOS 7 - Layout advice
- Aspect fill and Aspect fit swift
- UIVIew from XIB with Autolayout to UItableView Header
- Auto Layout with UIImageView is producing incorrect view layout when an image is shown
- How to remove space of hidden UIImage?
- Using auto layout to arrange views in sequence with one taking whatever space is available
- error when adding constraints to a view I added to UIWindow?
- Constraints error <Will attempt to recover by breaking constraint>
- How would I align an image to the bottom right of the view using Size Classes in Xcode?
- Setting frame for UIButton ignored
- AutoLayout on UITableViewCell subclass breaks after reuse
Related Questions in CONTENTSIZE
- How to set UITableViewCell Height according to UICollectionView Content size?
- UITextView setContentSize does not work?
- UIWebView content size resetting while come back from background
- Different behavior of contentSize with iPad and iPhone
- how to set dynamic uicollectionviewcell size from its content - programmatically
- Having ScrollView.contentSize issues not able to scroll properly on Top, Left, Right?
- Self sizing specific UITableView Cell
- CollectionView rows Side By Side - should have same dynamic height
- UITableView Content Size Smaller than Expected
- iOS 7 contentSize not calculated properly
- Animating contentOffset changes in a UICollectionView on deleteItemsAtIndexPaths
- SVPullToRefresh not working with UICollectionView when content height is less than the height
- Add UIScrollView which fulfills superview and add its content which fulfills everything but safe area
- Dynamically set webview width to match content width (and height)
- UIScrollView contenOffset and setContentSize?
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?
You have to know which rows that you want to implement the
UITableViewAutomaticDimensionfor because when because whenheightForRowAtis called, no cells are created yet so you can´t check the cell type ye that´s why you need to check theindexPath.rowinstead.Something like this for example: