无法在 UITableviewcell 的 ios 11 layoutsubview 子视图中找到 UITableViewCellDeleteConfirmationView? [英] Not able find UITableViewCellDeleteConfirmationView in ios 11 layoutsubview subview in UITableviewcell?

查看:24
本文介绍了无法在 UITableviewcell 的 ios 11 layoutsubview 子视图中找到 UITableViewCellDeleteConfirmationView?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我必须覆盖 Tableviewcell 中的高度滑动删除按钮我使用下面的代码它在 ios 10 中工作正常但在 ios11 中我无法在 layoutsubview 类中找到 UITableViewCellDeleteConfirmationView

I have to override the height swipe delete button in Tableviewcell i used the below code it's work fine ios 10 but in ios11 i can't able find the UITableViewCellDeleteConfirmationView in layoutsubview class

 foreach (var views in this.Subviews)
    {
        if (views.Class.Name.ToString() == new NSString("UITableViewCellDeleteConfirmationView"))
        {
            CGRect newFrame = views.Frame;
            CGRect newframe1 = new CGRect(newFrame.X, 6, newFrame.Size.Width, 59);
            views.Frame = newframe1;

            foreach (var getButtonviews in views.Subviews)
            {
                Console.WriteLine("x:"+getButtonviews.Frame.X);
                Console.WriteLine("W:"+getButtonviews.Frame.Width);
                if (getButtonviews.Class.Name.ToString() == "_UITableViewCellActionButton")
                {
                    UIImage image = UIImage.FromBundle("img_line");
                    UIButton button = (UIButton)getButtonviews;
                    UIImageView imageview = new UIImageView();
                    imageview.Frame = new CGRect(getButtonviews.Frame.X + 120, 0, 1, getButtonviews.Frame.Height);
                    imageview.Image = image;
                    button.AddSubview(imageview);

                    foreach (var getButton in getButtonviews.Subviews)
                    {
                        if (getButton.Class.Name.ToString() == "UIButtonLabel")
                        {
                            UILabel label = (UILabel)getButton;
                            label.Font = UIFont.FromName("ProximaNova-Regular", 13);
                        }
                    }
                }
            }
        }

    }

推荐答案

tableview内部的view层级在iOS10之后有变化.

The view hierarchy inside tableview has been changed after iOS10.

UITableView ->UITableViewCell ->UITableViewCellDeleteConfirmationView ->_UITableViewCellActionButton

UITableView -> UITableViewCell -> UITableViewCellDeleteConfirmationView -> _UITableViewCellActionButton

iOS11

  1. 使用 Xcode8

  1. work with Xcode8

UITableView ->UITableViewWrapperView ->UISwipeActionPullView ->UISwipeActionStandardButton

UITableView -> UITableViewWrapperView -> UISwipeActionPullView -> UISwipeActionStandardButton

  • 使用 Xcode9

  • work with Xcode9

    UITableView ->UISwipeActionPullView ->UISwipeActionStandardButton

    UITableView -> UISwipeActionPullView -> UISwipeActionStandardButton

  • 解决方案:

    我让代码在 iOS8 - iOS11 上都能工作,我把所有的代码放在 ViewController 的 ViewWillLayoutSubviews 中,但首先,我们需要知道我们是哪个单元格选择.

    Solution:

    I make the code work both at iOS8 - iOS11, and I put all the code at ViewWillLayoutSubviews in ViewController , but first , we need to know which cell we are selecting.

    public class TableDelegate : UITableViewDelegate
    {
        YourViewController owner;
    
        public TableDelegate(YourViewController vc){
            owner = vc;
        }
    
        public override UITableViewRowAction[] EditActionsForRow(UITableView tableView, NSIndexPath indexPath)
        {
            UITableViewRowAction hiButton = UITableViewRowAction.Create(
                UITableViewRowActionStyle.Default,
                "Hi",
                delegate {
                    Console.WriteLine("Hello World!");
                });
            return new UITableViewRowAction[] { hiButton };
        }
    
        public override void WillBeginEditing(UITableView tableView, NSIndexPath indexPath)
        {
            owner.selectIndexPath = indexPath;
            owner.View.SetNeedsLayout();
        }
    
        public override void DidEndEditing(UITableView tableView, NSIndexPath indexPath)
        {
            owner.selectIndexPath = null;
        }
    }
    
    public class TableSource : UITableViewSource
    {
    
        string[] TableItems;
        string CellIdentifier = "TableCell";
    
        public TableSource(string[] items)
        {
            TableItems = items;
        }
    
        public override nint RowsInSection(UITableView tableview, nint section)
        {
            return TableItems.Length;
        }
    
        public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
        {
            UITableViewCell cell = tableView.DequeueReusableCell(CellIdentifier);
            string item = TableItems[indexPath.Row];
    
            //---- if there are no cells to reuse, create a new one
            if (cell == null)
            { cell = new UITableViewCell(UITableViewCellStyle.Default, CellIdentifier); }
    
            cell.TextLabel.Text = item;
    
            return cell;
        }
    }
    
    public partial class ViewController : UIViewController
    {
        protected ViewController(IntPtr handle) : base(handle)
        {
            // Note: this .ctor should not contain any initialization logic.
        }
    
        public NSIndexPath selectIndexPath { get; set; }
    
        public override void ViewDidLoad()
        {
            base.ViewDidLoad();
            // Perform any additional setup after loading the view, typically from a nib.
            string[] tableItems = new string[] { "Vegetables", "Fruits", "Flower Buds", "Legumes", "Bulbs", "Tubers" };
            tableview.Source = new TableSource(tableItems);
            tableview.Delegate = new TableDelegate(this);
        }
    
        public override void ViewWillLayoutSubviews()
        {
            base.ViewWillLayoutSubviews();
    
            if (this.selectIndexPath != null)
            {
                if (UIDevice.CurrentDevice.CheckSystemVersion(11, 0))
                {
                    // Code that uses features from iOS 11.0 and later
                    foreach (UIView subview in tableview.Subviews)
                    {
                        if (subview.Class.Name.ToString() == "UISwipeActionPullView")
                        {
                            foreach (var buttonViews in subview.Subviews)
                            {
                                if (buttonViews.Class.Name.ToString() == "UISwipeActionStandardButton")
                                {
                                    //operate what you want.
                                }
                            }
                        }
                    }
                }
                else
                {
                    // Code to support earlier iOS versions
                    UITableViewCell cell = tableview.CellAt(this.selectIndexPath);
                    foreach (UIView subview in cell.Subviews)
                    {
                        if (subview.Class.Name.ToString() == "UITableViewCellDeleteConfirmationView")
                        {
                            foreach (var buttonViews in subview.Subviews)
                            {
                                if (buttonViews.Class.Name.ToString() == "_UITableViewCellActionButton")
                                {
                                    //operate what you want.
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    

    这篇关于无法在 UITableviewcell 的 ios 11 layoutsubview 子视图中找到 UITableViewCellDeleteConfirmationView?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

    查看全文
    登录 关闭
    扫码关注1秒登录
    发送“验证码”获取 | 15天全站免登陆