How to share data between two apps which is made from app designer?
40 次查看(过去 30 天)
显示 更早的评论
When I use guide in matlab, I used to use setappdata and getappdata function to share data between different gui. At this time I made two app using app designer, how to share data between two apps?
0 个评论
回答(2 个)
Dave Behera
2016-3-24
Datasharing in App Designer can be done by creating and using properties. See this link:
Also, check this link for an example:
Chris Portal
2016-4-10
One way of doing this would be:
- Create a private property in App1 called SharedData. Initialize it to a default value that you can reliably check later to determine if App2 has set it yet or not.
- Create a public function in App1 called setSharedData(app, newdata) which does any necessary checking before setting app.SharedData to newdata
- When App1 needs to call App2, check whether app.SharedData is set to the default value from step #1. If it is, tell App2 to open. Otherwise, tell App2 to just send data.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!