首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >在表视图中添加动态图片

在表视图中添加动态图片
EN

Stack Overflow用户
提问于 2015-05-26 23:22:35
回答 1查看 152关注 0票数 1

我正试图为自己做一件棘手的事情(布局约束方面的新问题)。

这个想法是,我必须动态地将图片添加到一个表cell.The单元结构中:

  1. 图像视图
  2. 文本视图
  3. 滚动视图(水平滚动)包含图像中的图像,部件和数字并不总是在那里,也不一定是常量(有些单元格包含图像和文本,而其他单元格仅包含文本),这就是为什么我需要通过编程添加约束。

我已经搜索了很多东西,并应用了很多东西,但是现在我遇到了异常,应用程序正在崩溃。希望你能帮我。这是我的密码:

代码语言:javascript
复制
        var imgsScrollView = UIScrollView()
        cell.employmentEventTextView.text = employmentEventsList[indexPath.row].body
        if (imgsCountintheCell == 1){
            eventsListView.rowHeight = 220
        }else{
            eventsListView.rowHeight = 500
        }
        for var i = 0 ; i < imgsCountintheCell ; i++ {

            if(i == 0){

                var int : String = String(i)
                //getting the image from URL Block
                var imgName = "image" + int
                let url = NSURL(string: employmentEventsList[indexPath.row].imgs[i])
                let data = NSData(contentsOfURL: url!) //make sure your image in this url does exist, otherwise unwrap in a if let check
                let image = UIImage(data: data!)
                let imgView = UIImageView(image: image!)
                imgView.frame = CGRect(x: 0, y: 0, width: 200, height: 200)
                imgView.setTranslatesAutoresizingMaskIntoConstraints(false)

                var constX = NSLayoutConstraint(item: imgView, attribute: NSLayoutAttribute.CenterX, relatedBy: NSLayoutRelation.Equal, toItem: nil, attribute: NSLayoutAttribute.CenterX, multiplier: 1, constant: 0)
                var constTop = NSLayoutConstraint(item: imgView, attribute: NSLayoutAttribute.Top, relatedBy: NSLayoutRelation.Equal, toItem: cell.employmentEventTextView, attribute: NSLayoutAttribute.Bottom, multiplier: 1, constant: 2)

                var textPlaceBottom = NSLayoutConstraint(item: cell.employmentEventTextView, attribute: NSLayoutAttribute.Bottom, relatedBy: NSLayoutRelation.Equal, toItem: imgView, attribute: NSLayoutAttribute.Top, multiplier: 1, constant: 2)
                eventsListView.addSubview(imgView)
                imgView.addConstraint(constX)
                imgView.addConstraint(constTop)
                cell.employmentEventTextView.addConstraint(textPlaceBottom)

            }else{
                var int : String = String(i)
                //getting the image from URL Block
                var imgName = "image" + int
                let url = NSURL(string: employmentEventsList[indexPath.row].imgs[i])
                let data = NSData(contentsOfURL: url!) //make sure your image in this url does exist, otherwise unwrap in a if let check
                let image = UIImage(data: data!)
                let imgView = UIImageView(image: image!)
                imgView.frame = CGRect(x: 0, y: 0, width: 100, height: 100)
                imgView.setTranslatesAutoresizingMaskIntoConstraints(false)
                let constscrollViewToTheTop = NSLayoutConstraint(item: imgsScrollView, attribute: NSLayoutAttribute.Top, relatedBy: .Equal, toItem: cell.employmentEventTextView , attribute: NSLayoutAttribute.Bottom, multiplier: 1, constant: 5)

                imgsScrollView.addSubview(imgView)
                eventsListView.addSubview(imgsScrollView)
                imgsScrollView.addConstraint(constscrollViewToTheTop)

            }

我的例外代码是:

代码语言:javascript
复制
Assertion failure in -[UIImageView nsli_lowerAttribute:intoExpression:withCoefficient:forConstraint:], /SourceCache/UIKit_Sim/UIKit-3318.93/NSLayoutConstraint_UIKitAdditions.m:3502
2015-05-27 01:49:58.097 طاقات علم[1713:38226] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Unexpected use of internal layout attribute'
*** First throw call stack:
(
0   CoreFoundation                      0x0000000100cc1a75 __exceptionPreprocess + 165
1   libobjc.A.dylib                     0x0000000102819bb7 objc_exception_throw + 45
2   CoreFoundation                      0x0000000100cc18da +[NSException raise:format:arguments:] + 106
3   Foundation                          0x000000010115cb6f -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
4   UIKit                               0x0000000101bdea77 -[UIView(AdditionalLayoutSupport) nsli_lowerAttribute:intoExpression:withCoefficient:forConstraint:] + 3483
5   Foundation                          0x00000001010e2b9e lower_1_attribute + 158
6   Foundation                          0x00000001010e26b4 -[NSLayoutConstraint _lowerIntoExpression:reportingConstantIsRounded:] + 102
7   Foundation                          0x00000001010d862e -[NSLayoutConstraint _addToEngine:integralizationAdjustment:mutuallyExclusiveConstraints:] + 96
8   UIKit                               0x0000000101bd0cf9 -[UIView(UIConstraintBasedLayout) _layoutEngine_didAddLayoutConstraint:roundingAdjustment:mutuallyExclusiveConstraints:] + 411
9   UIKit                               0x0000000101bd0f94 -[UIView(UIConstraintBasedLayout) _tryToAddConstraintWithoutUpdatingConstraintsArray:roundingAdjustment:mutuallyExclusiveConstraints:] + 30
10  UIKit                               0x0000000101bd10bc -[UIView(UIConstraintBasedLayout) _tryToAddConstraint:roundingAdjustment:mutuallyExclusiveConstraints:] + 243
11  طاقات علم                   0x0000000100910764 _TFCX15__ymcamGdqDduaj30EmploymentEventsViewController9tableViewfS0_FTCSo11UITableView21cellForRowAtIndexPathCSo11NSIndexPath_CSo15UITableViewCell + 7892
12  طاقات علم                   0x000000010091164f _TToFCX15__ymcamGdqDduaj30EmploymentEventsViewController9tableViewfS0_FTCSo11UITableView21cellForRowAtIndexPathCSo11NSIndexPath_CSo15UITableViewCell + 79
13  UIKit                               0x000000010164be03 -[UITableView _createPreparedCellForGlobalRow:withIndexPath:willDisplay:] + 508
14  UIKit                               0x000000010162b901 -[UITableView _updateVisibleCellsNow:isRecursive:] + 2846
15  UIKit                               0x000000010164178c -[UITableView layoutSubviews] + 213
16  UIKit                               0x00000001015ce1c3 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 521
17  QuartzCore                          0x00000001054d6c58 -[CALayer layoutSublayers] + 150
18  QuartzCore                          0x00000001054cb87e _ZN2CA5Layer16layout_if_neededEPNS_11TransactionE + 380
19  QuartzCore                          0x00000001054cb6ee _ZN2CA5Layer28layout_and_display_if_neededEPNS_11TransactionE + 24
20  QuartzCore                          0x000000010543936e _ZN2CA7Context18commit_transactionEPNS_11TransactionE + 242
21  QuartzCore                          0x000000010543a482 _ZN2CA11Transaction6commitEv + 390
22  QuartzCore                          0x000000010543aaed _ZN2CA11Transaction17observer_callbackEP19__CFRunLoopObservermPv + 89
23  CoreFoundation                      0x0000000100bf6507 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
24  CoreFoundation                      0x0000000100bf6460 __CFRunLoopDoObservers + 368
25  CoreFoundation                      0x0000000100bec293 __CFRunLoopRun + 1123
26  CoreFoundation                      0x0000000100bebbc6 CFRunLoopRunSpecific + 470
27  GraphicsServices                    0x0000000104dcaa58 GSEventRunModal + 161
28  UIKit                               0x0000000101554580 UIApplicationMain + 1282
29  طاقات علم                   0x000000010094c19e top_level_code + 78
30  طاقات علم                   0x000000010094c27a main + 42
31  libdyld.dylib                       0x0000000102ff5145 start + 1
32  ???                                 0x0000000000000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException

提前为您提供任何帮助

更新:我注意到了一种解决问题的方法,它似乎很有效,我可以使用空白对象约束的概念自动禁用(当图像视图为空,文本视图自动向上移动时),我发现它对于me.Easy & fast解决方案来说还不错。现在,我有一个问题要问:是否有办法使同一表具有行高的多个值?(例如,第一行和第二行有row.hight = 60,因为它们没有图片,第三行有row.hight = 500,因为它们有图片。)

是否可以在同一个表中为每个单元格提供一个单独的高度值?

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2015-05-27 04:52:46

就我个人而言,我发现更容易为单元格创建一个nib文件,如果应该隐藏某些视图,那么就可以“折叠”约束。例如创建一个包含UIImageView、UITextView和UIScrollView以及所有约束的nib。为视图和视图的高度/宽度约束添加IBOutlets。然后,如果需要隐藏视图,请将其高度/宽度约束常量设置为0。

注意,在回收单元格时,需要在-(void)prepareForReuse中重置约束常量

通过实现UITableView委托方法,可以为每个单元格设置不同的高度(在Swift中语法不同,但名称相同)

代码语言:javascript
复制
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

对于每一行,您可以返回不同的高度。

复杂的高度可能会变得有点棘手,因为有时您必须构建单元格来计算其高度,然后必须在cellForRowAtIndexPath中再次构建它。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/30470624

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档