English 中文(简体)
我实际上可以在不配置的情况下安装一些应用程序
原标题:I can actually install a few apps without provisioning

昨天我在玩三二十图书馆。我点击命令+enter在我的模拟器上构建并运行该应用程序,令我惊讶的是,它在我的设备iPod Touch 4th Gen上安装了该应用程序。我真的不知道这是怎么发生的,我试着在我的其他项目中使用它,但不幸的是它没有起作用。

今天,我从苹果的开发者网站下载了快速联系人示例代码,同样的事情发生了,我可以在没有任何配置的情况下在我的设备上安装该应用程序。我看到,对于上述两个项目(三个20和快速联系人),我的设备列在活动的可执行文件中。

但对于其他项目,我的设备没有列出。我尝试在其他设备上运行上述两个应用程序,但都失败了,并显示消息“找不到已配置的iOS设备”。我的设备不是越狱的,它是我几天前买的一个全新的。

我是不是错过了什么,因为能够在不通过苹果门户网站的情况下安装应用程序是一个巨大的奖励,我也想为我的其他应用程序实现同样的功能。

我试着附上截图,但看起来我至少需要10分才能做到,而且我是新来的。很抱歉

最佳回答

查看XCode Organizer;从几个版本之前开始,它现在管理一个团队配置文件,该文件可以处理任何捆绑包标识符和任何设备(如果它们已添加到您的开发人员帐户)。这不是一个特殊的配置文件,只是一个自动配置文件,如果你告诉它你的iTunes Connect详细信息,它会为你设置。

有了这个,你构建和运行的任何东西都应该能够使用该配置文件在你的设备上运行代码。

问题回答

暂无回答




相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签