在呈现模型视图控制器时是否可以与呈现视图控制器交互?
------------
| |
| VC1 |
| |
| |
| |
| |
|------------|
| VC2 |
| |
------------
在上图中,VC1是presentingViewController
,VC2是presentedViewController
。
我试图实现的用户体验是用户可以与VC1和VC2进行交互。目前,当VC2出现时,触摸不会传递到VC1。
答案 0 :(得分:0)
我可能迟到了,但是假设您希望VC2处于半屏状态。这使您可以与VC1和VC2进行交互
const UserSchema = new mongoose.Schema({
name: {
type: String,
required: true
},
email: {
type: String,
required: true
},
password: {
type: String,
required: true
},
date: {
type: Date,
default: Date.now
},
lists: [{
listname: String,
listitems: [{item: String}]
}]
});