Common

简介: Common

1364549968_3376.png

1.下拉刷新

 [self.m_luntanTable addPullToRefreshWithActionHandler:^{
        NSLog(@"refresh dataSource");
        [self.m_luntanTable.pullToRefreshView performSelector:@selector(stopAnimating) withObject:nil afterDelay:2];
        [self performSelectorOnMainThread:@selector(InitThreadFunc:) withObject:nil waitUntilDone:NO];
    }];
    // trigger the refresh manually at the end of viewDidLoad
    [self.m_luntanTable.pullToRefreshView triggerRefresh];

2.转圈等待

-(void)SetHUD
{
    HUD = [[MBProgressHUD alloc] initWithView:self.navigationController.view];
    [self.m_BaseScroll addSubview:HUD];
    HUD.delegate = self;
    HUD.labelText = @"加载中";
    [HUD showWhileExecuting:@selector(myTask) onTarget:self withObject:nil animated:YES];
}

3.启动网络监听和更新版本检查

 listenNetwork = [[zzListenNetworkAndTestVersionUpdate alloc]init];
    listenNetwork.delegate = self;
    [listenNetwork SetListenNetWork:622493449 storeUrl:@"https://itunes.apple.com/us/app/xing-ke-hui/id622493449?ls=1&mt=8"];//622493449//588927533
    [listenNetwork GetBeginNetWork];

4.zip压缩NSString

-(void)ZipString
{
    NSString *str = @"{我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我人}";
    ///string  转data
    NSData *data = [str dataUsingEncoding:NSUTF8StringEncoding];
    //data zip压缩
    data = [LFCGzipUtillity gzipData:data];
    //data base64编码
    str =[data base64EncodingWithLineLength:0];
    //base64转data
    data = [NSData dataWithBase64EncodedString:str];
    //data 解压缩
    data = [LFCGzipUtillity uncompressZippedData:data];
    //data转string
    str = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
    //输出string
    NSLog(str);
}

5.图片高斯模糊

 [self.headBackImg setImageToBlur:[UIImage imageNamed:@"detail_bj.png"]
                        blurRadius:kLBBlurredImageDefaultBlurRadius
                   completionBlock:^(NSError *error){
                       NSLog(@"The blurred image has been setted");
                   }];
相关文章
|
2月前
|
缓存 Java 网络安全
Solr7.4.0报错org.apache.solr.common.SolrException
在使用 Solr 7.4.0 时,`org.apache.solr.common.SolrException` 错误可能由多种原因引起,包括配置文件错误、核心未加载、权限问题、Java 环境问题、依赖库冲突和网络配置问题。通过检查配置文件、确保正确的权限、验证Java环境、解决依赖库冲突和检查网络配置,可以有效解决这些问题。结合日志文件、管理控制台和调试模式,可以快速定位和解决错误,确保 Solr 系统的稳定运行。
35 1
|
3月前
|
开发框架 .NET 测试技术
了解 .NET 9 中的新 Microsoft.AspNetCore.OpenApi 包,并将其与 NSwag 和 Swashbuckle.AspNetCore 进行比较。
本文介绍了 `.NET 9` 中新推出的 `Microsoft.AspNetCore.OpenApi` 包,该包旨在为 `ASP.NET Core` 应用程序生成 `OpenAPI` 文档。文章对比了 `NSwag` 和 `Swashbuckle.AspNetCore` 两大现有库,探讨了新包的优势和不足,特别是在性能和功能方面。尽管新包在某些方面尚不及成熟库完善,但其对原生 `AoT` 编译的支持和未来的扩展潜力使其成为一个值得考虑的选择。文章还提供了详细的性能测试数据和优化建议,适合对 `OpenAPI` 文档生成感兴趣的开发者阅读。
165 3
了解 .NET 9 中的新 Microsoft.AspNetCore.OpenApi 包,并将其与 NSwag 和 Swashbuckle.AspNetCore 进行比较。
|
SQL 数据库
org.flywaydb.core.api.FlywayException: Schema “xxx” contains a failed migration to version 156!
org.flywaydb.core.api.FlywayException: Schema “xxx” contains a failed migration to version 156!
228 0
com.google.common.base.Preconditions.checkNotNull(Preconditions.java:877)
com.google.common.base.Preconditions.checkNotNull(Preconditions.java:877)
93 0
|
Java Apache
Cause: the class org.apache.tools.ant.taskdefs.optional.ANTLR was not found.
Cause: the class org.apache.tools.ant.taskdefs.optional.ANTLR was not found.
110 0
Could not find com.serenegiant:common:4.1.1
Could not find com.serenegiant:common:4.1.1
263 0
|
IDE 开发工具
Unable to load class ‘org.gradle.api.internal.plugins.DefaultConvention‘
Unable to load class ‘org.gradle.api.internal.plugins.DefaultConvention‘
1322 0
|
存储 安全 Java
JavaWeb - Common 之 GuavaCache
JavaWeb - Common 之 GuavaCache
131 0
JavaWeb - Common 之 GuavaCache
|
消息中间件 Java Kafka
报错:org.apache.kafka.common.errors.TimeoutException: Expiring 1 record(s) for mySecondTopic-2:
报错:org.apache.kafka.common.errors.TimeoutException: Expiring 1 record(s) for mySecondTopic-2:
2471 0
JavaWeb - Common 之 Const
JavaWeb - Common 之 Const
115 0