可能重复:
iPhone开发 - 开发和分发配置有什么区别?
iOS Provision Portal中证书下的开发和分发选项卡有什么区别?应该使用哪一个?何时使用?有没有苹果严格的标准来选择它们?
是否可以在同一视图中同时播放2个视频文件?
我想让他们都玩超过屏幕的一半,有点像这样:
_ _ _ _ _ _ _ _ _ _ | | | | | VIDEO | | | |_ _ _ _ _ _ _ _ _ _| | | | | | VIDEO | | | |_ _ _ _ _ _ _ _ _ _|
我将如何实现这一目标?
谢谢 :)
我想与其他运行相同应用程序的设备共享我的应用程序iPad屏幕.
更多细节:我的应用程序是会议应用程序.现在我希望那些参与特定会议的人可以在我共享应用程序屏幕时显示我的屏幕.
结论:我想与其他运行相同应用程序的设备共享我的应用程序屏幕,就像Skype屏幕共享一样.
我有这个xml文件:
<Menu>
<item value="boiled">
<image value="boiling1recipe">boiling1.jpg</image>
<recipeImage>png1.png</recipeImage>
<recipeImage>png2.png</recipeImage>
<recipeImage>png3.png</recipeImage>
<recipeImage>png4.png</recipeImage>
</item>
<item value="boiled">
<image value="boiling2recipe">boiling2.jpeg</image>
<recipeImage>png5.png</recipeImage>
<recipeImage>png6.png</recipeImage>
<recipeImage>png7.png</recipeImage>
<recipeImage>png8.png</recipeImage>
</item>
<item value="rosted">
<image value="roasted1recipe">roasted1.jpeg</image>
<recipeImage>png8.png</recipeImage>
<recipeImage>png9.png</recipeImage>
<recipeImage>png10.png</recipeImage>
<recipeImage>png11.png</recipeImage>
</item>
<item value="rosted">
<image value="roasted2recipe">roasted2.jpeg</image>
<recipeImage>png12.png</recipeImage>
<recipeImage>png13.png</recipeImage>
<recipeImage>png1.png</recipeImage>
<recipeImage>png2.png</recipeImage>
</item>
</Menu>
Run Code Online (Sandbox Code Playgroud)
现在,我正在解析它:
DDXMLNode *node = [item attributeForName:@"value"];
if ([[node stringValue] isEqual:@"boiled"]) {
[listOfBoiledItems addObject:model];
DDXMLNode *node1 = [item attributeForName:@"value"];
if ([[node1 stringValue] isEqual:@"boiling1recipe"]) {
[listOfRecipies1 addObject:model];
}
else if ([[node1 stringValue] isEqual:@"boiling2recipe"]) {
[listOfRecipies2 addObject:model];
}
}
else if ([[node stringValue] isEqual:@"rosted"]) …Run Code Online (Sandbox Code Playgroud)