We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.

Forum Discussion

Zoey03's avatar
Zoey03
Helpful | Level 6
7 years ago

IOS build error: No visible @interface for 'DBFILESUserAuthRoutes' declares the selector 'uploadData

  DBUserClient * client = [DBClientsManager authorizedClient ]; DBFILESWriteMode *mode = [[DBFILESWriteMode alloc] initWithOverwrite];     [[client.filesRoutes uploadData:objPath                 ...
  • Zoey03's avatar
    Zoey03
    7 years ago

    Still I don't know why it encountered this error,,,

    No visible @interface for 'DBFILESUserAuthRoutes' declares the selector 'uploadData:mode:autorename:clientModified:mute:inputData:'

     

     

    DBUserClient * client = [DBClientsManager authorizedClient ];
    DBFILESWriteMode *mode = [[DBFILESWriteMode alloc] initWithOverwrite];
        [[[client.filesRoutes uploadData:@"/test/path/in/Dropbox/account/my_output.txt"
                                     mode:mode
                               autorename:@(YES)
                           clientModified:nil
                                     mute:@(NO)
                                inputData:fileData]
           setResponseBlock:^(DBFILESFileMetadata *result, DBFILESUploadError *routeError, DBRequestError *networkError) {
               if (result) {
                   NSLog(@"%@\n", result);
               } else {
                   NSLog(@"%@\n%@\n", routeError, networkError);
               }
           }] setProgressBlock:^(int64_t bytesUploaded, int64_t totalBytesUploaded, int64_t totalBytesExpectedToUploaded) {
               NSLog(@"\n%lld\n%lld\n%lld\n", bytesUploaded, totalBytesUploaded, totalBytesExpectedToUploaded);
           } ] ;

       I compared the demo with these codes and they are the same.  Really need help!

  • Greg-DB's avatar
    Greg-DB
    7 years ago

    Zoey03 To clarify, did you solve this, or do you still need help? You marked your last reply as a solution.

     

    Anyway, I recommend just letting Xcode autocomplete the method call, as that will give you the definition for the version of the SDK you have installed.

     

    It sounds like you're referring to this sample, which is now out of date. (I'll ask the team to update that.) It's just missing the new propertyGroups parameter, to which you can pass nil if you're not using that feature. So, an updated version would look like:

     

    NSData *fileData = [@"file data example" dataUsingEncoding:NSUTF8StringEncoding allowLossyConversion:NO];
    
    // For overriding on upload
    DBFILESWriteMode *mode = [[DBFILESWriteMode alloc] initWithOverwrite];
    
    [[[client.filesRoutes uploadData:@"/test/path/in/Dropbox/account/my_output.txt"
                                mode:mode
                          autorename:@(YES)
                      clientModified:nil
                                mute:@(NO)
                      propertyGroups:nil
                           inputData:fileData]
      setResponseBlock:^(DBFILESFileMetadata *result, DBFILESUploadError *routeError, DBRequestError *networkError) {
          if (result) {
              NSLog(@"%@\n", result);
          } else {
              NSLog(@"%@\n%@\n", routeError, networkError);
          }
      }] setProgressBlock:^(int64_t bytesUploaded, int64_t totalBytesUploaded, int64_t totalBytesExpectedToUploaded) {
          NSLog(@"\n%lld\n%lld\n%lld\n", bytesUploaded, totalBytesUploaded, totalBytesExpectedToUploaded);
      }];

     

     

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

5,877 PostsLatest Activity: 6 hours ago
325 Following

If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.

For more info on available support options for your Dropbox plan, see this article.

If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!