美文网首页iOS专题
iOS 修改栈空间大小

iOS 修改栈空间大小

作者: Zhen斌iOS | 来源:发表于2020-06-01 22:06 被阅读0次

修改栈空间大小代码如下:

+(NSThread *)createThreadWithTarget:(id)target selector:(SEL)selector
object:(id)argument stackSize:(NSUInteger)size {
    if( (size % 4096) != 0) { 
        return nil;
    }
    NSThread *t = [[NSThread alloc] initWithTarget:target
             selector: selector object:argument];
    t.stackSize = size;
    return t; 
}

相关文章

网友评论

    本文标题:iOS 修改栈空间大小

    本文链接:https://www.haomeiwen.com/subject/lcyezhtx.html