문제

I'm using robot legs framework and wondering how mediator.mapView works with multiple instances of the same view. For example, in the following, is a new ItemDisplayMediator created for every ItemDisplay instantiated, or do all ItemDisplay's use the same mediator? If they each instantiate a new mediator, is it possible to use a single mediator for multiples of the same class/view?

mediatorMap.mapView(ItemDisplay, ItemDisplayMediator);
도움이 되었습니까?

해결책

Each view instance is mediated by a different Mediator instance.

If you want a single mediator for multiple items, then create a Mediator for a container and mediate its children.

다른 팁

alecmce is correct, the MediatorMap is going to apply a new instance of the mediator to each instance of the view that is being mediated comes onto the stage. A mediator, as it is written in robotlegs, is only equipped to handle a single view component at any given time. The actual mediator isn't injected anywhere, so it isn't mapped with the injector.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top