zoukankan      html  css  js  c++  java
  • iOS 实现从后台切换到前台-复制分享宝贝内容,打开淘宝APP,自动弹出宝贝提示信息

    - (void)applicationDidBecomeActive:(UIApplication *)application {
    
        
    
        NSLog(@"
     ===> 程序重新激活 !");
    
     
    
        
    
        NSString *str = [YIdentificationClipboard getIdentificationData];
    
        NSLog(@"strr:%ld",(long)str.length);
    
        if (str.length >= 2) {
    
            //弹窗
    
            //智能搜索 提示弹窗
    
            IdentificationClipboardView *idview = [IdentificationClipboardView initIdentificationClipboardView];
    
           idview.contentstrings = str;
    
           idview.getsearchblock = ^(NSString *searchstr) {
    
                NSLog(@"searchstrsearchstr:%@",searchstr);
    
                //跳转到搜索页面
    
                UITabBarController *tabar = (UITabBarController *)self.window.rootViewController;
    
                MainSeachJumpQueryVc *searchjumpvc = [[MainSeachJumpQueryVc alloc]init];
    
                searchjumpvc.titlename = str;
    
                UINavigationController *nav = tabar.viewControllers[tabar.selectedIndex];
    
                searchjumpvc.hidesBottomBarWhenPushed = YES;
    
                [nav pushViewController:searchjumpvc animated:YES];
    
            };
    
        }
    
     
    
    }
    

      

     

  • 相关阅读:
    c#函数重载
    (1).net c# 一步一步自己写三层代码生成器(主界面及连接数据库界面)
    C#给datagridview某行赋值(转)
    好的软件人员必看的六十本书
    C# 语言规范
    spring 排除指定的类或者包扫描
    java web spring 发送邮件
    spring-data-redis和jedis版本对应收集总结
    python 多线程和多进程基本写法
    python 调用nmap
  • 原文地址:https://www.cnblogs.com/shenlaiyaoshi/p/8759459.html
Copyright © 2011-2022 走看看