在iOS中轻松过渡后如何显示提醒?

时间:2018-10-19 13:18:00

标签: ios uialertcontroller

我正在iOS中实现Login。我想先退回到以前的VC(IntroVC),并显示有关IntroVC中已完成的已完成注册警报。

(completingSignUp是Unwind函数。)

select  lpd.comp_name,
        count (*) as total, 
        count (case when ss.status in ('A', 'B') then 1 else 0 end) as sub_total

from lz.status_score as ss
join dm.lpd_company as lpd on lpd.id = ss.id

group by lpd.comp_name
order by 

它仅显示警报,而不会释放到IntroVC。

我认为警报代码的位置似乎不正确。

我应该在哪里写警报代码?

1 个答案:

答案 0 :(得分:1)

将代码放入IntroVC的viewDidAppear中。您将需要引入一个条件,以便仅在您通过放松搜索返回时才显示警报。