解决方案
10
你想动态修改LaunchImage?假如是的话就做不到了,原因是LaunchImage被打包在app里,没有写文件的权限,所以修改不了。
不过iOS 8增加了Launch Screen功能,虽然有如下限制:
Follow these guidelines when creating a launch screen file:
Use only UIKit classes.
Use a single root view that is a UIView or UIViewController object.
Don’t make any connections to your code (don’t add actions or outlets).
Don’t add UIWebView objects.
Don’t use any custom classes.
Don’t use runtime attributes.
还是要测试之后才知道到底可不可行。
不过iOS 8增加了Launch Screen功能,虽然有如下限制:
Follow these guidelines when creating a launch screen file:
Use only UIKit classes.
Use a single root view that is a UIView or UIViewController object.
Don’t make any connections to your code (don’t add actions or outlets).
Don’t add UIWebView objects.
Don’t use any custom classes.
Don’t use runtime attributes.
还是要测试之后才知道到底可不可行。
50
用UIImagePickerController选照片的时候,你不是写了didFinishPickingImage的delegate回调么?你都能取到用户选择的每张image了,传递给VC直接显示不就行了吗?
20
默认的UIImagePicker在选择时只允许我们选择一张照片,不符合你的需求。需要自定义了,下面有个demo可以参考
http://code4app.com/ios/%E7%9B%B8%E5%86%8C%E7%85%A7%E7%89%87%E5%A4%9A%E9%80%89/53f30139933bf03b278b4c10
http://code4app.com/ios/%E7%9B%B8%E5%86%8C%E7%85%A7%E7%89%87%E5%A4%9A%E9%80%89/53f30139933bf03b278b4c10
20
再顶一下啊,还有哪个高手有更好的办法啊
上面都已回答了,还没找到合适的吗?再给你推荐一下组件吧
http://code4app.com/ios/Multiple-Image-Picker/51222f056803fa0c05000000