本文介绍了未能产生归类于iOS的所有头和实现的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在

标记:


  • 使用服务名称目录:NO

  • Use service name directory: NO

删除未知文件:NO

添加'生成'目录:NO

Add 'Generated' directory: NO

允许,将把rootURL覆盖:YES

Allow rootURL overrides: YES

加载API文件(S):

Loading API File(s):


  • 读取/〜/桌面/井字游戏-V1-rpc.discovery

错误:无法获取API描述/
  〜/桌面/井字游戏-V1-rpc.discovery,错误:错误
  域名= NSURLErrorDomain code = -1100的请求的URL没有发现
  此服务器。的UserInfo = 0x7fec72c2cf30
  {NSUnderlyingError = 0x7fec72c2c680的请求的URL没有发现
  此服务器。
  NSErrorFailingURLStringKey =文件:///%20~/Desktop/tictactoe-v1-rpc.discovery,
  NSErrorFailingURLKey =文件:///%20~/Desktop/tictactoe-v1-rpc.discovery,
  NSLocalizedDescription =所请求的URL未在此找到
  服务器}

生成:

写作:


  • 从什么已经是在磁盘上没有变化。

ConfusedDeer-MBP:/ ConfusedDeer $

ConfusedDeer-mbp:/ ConfusedDeer$

推荐答案

进一步的故障排除后,我终于能够生成我的iOS客户端库!

After further troubleshooting I was finally able to generate my iOS client libraries!

我来完成,这是命令:

/Users/ConfusedDeer/Library/Developer/X$c$c/DerivedData/ServiceGenerator-eoemzskhioxhvgbxjfcwxowhamno/Build/Products/Debug/ServiceGenerator /Users/ConfusedDeer/Desktop/tictactoe-v1-rpc.discovery --outputDir /用户/ ConfusedDeer /桌面/ API

有与我所用的原始命令的两个问题。我终于能够通过将定位问题:

There were two issues with the original command I was using. I was finally able to locate the issue by placing:

文件:///%20~/Desktop/tictactoe-v1-rpc.discovery

在浏览器的URL,发现有一个%20,这是一个空间。有一次,我删除了所有的空格和符号(〜),并放置在URL以下

In the browser URL and noticed there was a %20, which is a space. Once I removed all the spaces and the tilde (~) and placed the following in the URL

文件:///Users/ConfusedDeer/Desktop/tictactoe-v1-rpc.discovery

一旦rpc.discovery文件出现在浏览器中,我意识到,谷歌条命令行工具将能够找到它。
另一个问题是输出目录必须是相对的(废话!)从我在终端上执行的命令。

once the rpc.discovery file appeared in the browser I realized that the google commmand line tool would be able to locate it.Another issue was the output directory had to be relative (duh!) from where I executed the command in the terminal..

在我跑:

/Users/ConfusedDeer/Library/Developer/X$c$c/DerivedData/ServiceGenerator-eoemzskhioxhvgbxjfcwxowhamno/Build/Products/Debug/ServiceGenerator /Users/ConfusedDeer/Desktop/tictactoe-v1-rpc.discovery --outputDir /用户/ ConfusedDeer /桌面/ API

在生成如下:

=============================================== ================================
  生成设置:

输出目录:〜/桌面/ API

Output Directory: ~/Desktop/API

发现RPC网址:

标记:


      
  • 使用服务名称目录:NO
      

        
    • 删除未知文件:NO

    •   
    • 添加'生成'目录:NO

    •   
    • 允许,将把rootURL覆盖:YES
        加载API文件(S):

    •   
    • 抓取〜/桌面/井字游戏-V1-rpc.discovery
        + - 加载:井字游戏:V1
        正在生成:

    •   
    • 井字游戏(V1)
        写作:

    •   
    • GTLQueryTictactoe.h(1744字节) - 新

    •   
    • GTLQueryTictactoe.m(1907字节) - 新

    •   
    • GTLServiceTictactoe.h(1507字节) - 新

    •   
    • GTLServiceTictactoe.m(1472字节) - 新

    •   
    • GTLTictactoe.h(583字节) - 新

    •   
    • GTLTictactoe_Sources.m(702字节) - 新

    •   
    • GTLTictactoeBoard.h(725字节) - 新

    •   
    • GTLTictactoeBoard.m(638字节) - 新

    •   
    • GTLTictactoeConstants.h(663字节) - 新

    •   
    • GTLTictactoeConstants.m(529字节) - 新

    •   
    • GTLTictactoeScore.h(974字节) - 新

    •   
    • GTLTictactoeScore.m(879字节) - 新

    •   
    • GTLTictactoeScoreCollection.h(976字节) - 新

    •   
    • GTLTictactoeScoreCollection.m(918字节) - 新

    •   
    • GTLTictactoeUser.h(878字节) - 新

    •   
    • GTLTictactoeUser.m(682字节) - NE

    •   

    成功!

    这篇关于未能产生归类于iOS的所有头和实现的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 11:27