答案 0 :(得分:0)
如果要将UIViewController推送动画的动画停止到导航控制器中,只需将动画参数设置为false。
$args = array(
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => -1,
'orderby' => 'ID',
'order' => 'desc');
$blank_posts = array();
$posts = new WP_Query( $args );
if ( $posts->have_posts() ) :
while ( $posts->have_posts() ) : $posts->the_post();
$content = get_the_content();
if($content == '') {
array_push( $blank_posts, $post);
}
endwhile;
endif;
/* print all blank content posts */
//echo "<pre>"; print_r($blank_posts);
/* loop */
if(!empty($blank_posts)){
foreach ($blank_posts as $pst) {
echo "ID= ". $pst->ID . ', '. "Title= ". $pst->post_title .'<hr />';
}
}
另一件事是,您可以通过调用&#39; layoutIfNeeded&#39;来停止搜索活动动画。 on&#39; self.view&#39; 。
[self.navigationController pushViewController:searchvc animated:false];
这将在没有任何动画的情况下进行必要的帧更改。