我只有一条路径,我收到一个错误“预期的标识符或'('

时间:2017-03-04 23:20:51

标签: c# ios xcode cocoapods pubnub

我在xCode上重新创建了一些代码。 我只有

package com.example.project;

import android.content.Context;
import android.database.Cursor;
import android.content.CursorLoader;
import android.content.Loader;

public abstract class AbstractCustomCursorLoader extends CursorLoader
  {
    private final Loader.ForceLoadContentObserver mObserver = new Loader.ForceLoadContentObserver();

    public AbstractCustomCursorLoader(Context context)
      {
        super(context);
      }

    @Override
    public Cursor loadInBackground()
      {
        Cursor cursor = getCursor();

        if (cursor != null)
          {
            // Ensure the cursor window is filled
            cursor.getCount();
            cursor.registerContentObserver(mObserver);
          }

        cursor.setNotificationUri(getContext().getContentResolver(), getContentUri());
        return cursor;
      }

    protected abstract Cursor getCursor();
    protected abstract Uri getContentUri();
  }

在我的档案上 我收到了“预期的标识符或'('错误

请帮忙!

1 个答案:

答案 0 :(得分:0)

不应该是#include "../PubNub/PubNub/Misc/Protocols/PNObjectEventListener.h"吗?