我想通过点击图钉注释进入新的SwiftUI视图 我已经在上面做了一个mapView和pin注释,我想通过在此pin上轻按以进入SwiftUI视图,如何在Uiviewrepresentable View中进入SwiftUi视图
这是我的mapView
describe('Report', () => {
describe('TASK.taskComplete()', () => {
it('Generate a Report on Task Completion', async () => {
try {
const task = new TASK(taskData, () => {});
/* const result = */await task.taskComplete();
// console.log(`${this.repoDir}`);
// shell.exec(`${taskData.cmd}`);
// console.log('HERE ->', result);
// if (fs.existsSync(`${this.repoDir}/.MENLOLAB_EXIT`)) {
// const exitCode = ['1', '2', '126', '127', '128', '128+n', '130', '255\\*'];
// expect(`${this.repoDir}/.MENLOLAB_EXIT`).to.be.a.file().and.not.empty
// .to.be.a.file().with.contents('1' || '2' || '126' || '127' || '128' || '128+n' || '130' || '255');
// } else {
expect(task.destroyTask()).to.be.true;
// }
} catch (err) {
expect(err).to.not.be.undefined;
}
});
});
});