有event listener
和intent filter
在Android
相机动作,如下所示
<receiver android:name="com.msronline.main.PictureReceiver">
<intent-filter android:priority="10000" >
<action android:name="com.android.camera.NEW_PICTURE" />
<action android:name="android.hardware.action.NEW_PICTURE" />
<action android:name="android.intent.action.CAMERA_BUTTON" />
<action android:name="android.provider.MediaStore.ACTION_IMAGE_CAPTURE" />
<action android:name="android.media.action.IMAGE_CAPTURE" />
<action android:name="android.media.action.STILL_IMAGE_CAMERA" />
<data android:mimeType="image/*" />
</intent-filter>
</receiver>
我想知道是否iOS
有类似的东西。我想要做的是,如果有人从本机相机应用程序捕获一些图像,它应该广播系统范围的消息 ( user captured some images
),我可以在我的应用程序中添加一个委托来接收该消息并执行一些操作。我正在考虑Local Notifications
这项任务,但我不确定这是否可行。