是否可以在后台线程中调用委托方法?

时间:2019-06-23 06:12:53

标签: ios swift delegates urlsession

是否可以迅速在后台线程内调用自定义委托方法?

示例:

   public function up()
    {
        Schema::create('users', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->string('name');
            $table->string('email')->unique();
            $table->string('username')->unique();
            $table->timestamp('email_verified_at')->nullable();
            $table->string('password');
            $table->rememberToken();
            $table->timestamps();
        });

0 个答案:

没有答案