加载.Xib文件后更新ViewController

时间:2019-03-17 18:36:06

标签: ios xamarin xamarin.ios

我有一个.Xib文件,该文件在Xamarin.ios中具有自定义视图。 这个Xib文件,我已经在viewcontroller中添加了。 现在,按照viewcontroller类首先加载的流程优先方法, 然后加载Xib文件。

我具有某些功能,因此在加载.xib文件之后,我需要更新viewcontroller类中的方法。

让我们说,在加载.xib文件后,我想更改viewcontroller类中自定义视图的宽度。

这可能很简单,我是ios的新手,所以需要帮助

1 个答案:

答案 0 :(得分:0)

您可以尝试为自定义视图的宽度添加约束。取出约束的出口,并在需要时更改其常数,并在需要时调用布局以重新加载视图。

update case_detail cd
    set judgment_date = (select r.judgement_date
                         from received r
                         where cd.object_id = r.object_id
                        )
    where exists (select 1
                  from received r
                  where cd.object_id = r.object_id
                 );