How do I use my class in AppDelegate.swift

1k Views Asked by At

I have a ‘Member' class inside the project and I'm trying to pass some data from Phone to Watch extension. The error says: Use of unresolved identifier ‘Member'

I tried to create a module ‘MemberKit’ and import it but I still get this eror.

Thanks in advance!

func application(application: UIApplication, handleWatchKitExtensionRequest userInfo: [NSObject : AnyObject]?, reply: (([NSObject : AnyObject]!) -> Void)!) {

if let userInfo = userInfo, request = userInfo["request"] as? String {

  if request == "getMembers" {

    var members = [Member]()
    let temp = Member(nickname: "Tom", phone: "333-111-2222", profilePhoto: "tom.png")
    members.append(temp)

    reply(["request": NSKeyedArchiver.archivedDataWithRootObject(members)])
    return
  }

}


reply([:])
}
1

There are 1 best solutions below

2
On BEST ANSWER

Make sure that Member is declared in a place that your AppDelegate can "see" it.

This concept is called "scope" and is crucial to many programming languages, including Swift. Classes declared inside other classes, for example, are not visible outside that class (unless they're given specific access modifiers).

If that solution fails, try this:

  1. Click on Member.swift in your File Navigator.
  2. Then, in the File Inspector, make sure that the correct checkboxes are ticked under "Target Membership."