You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the cursor selects a string that represents a segue-identifier, like in
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if([segue.identifier isEqualToString:@"cursor is on this string"]) {
...
}
}
or in
[selfperformSegueWithIdentifier:@"cursor is on this string"];
and executes the plugin-action, it should open the corresponding storyboard and select the segue.
This may be very tricky to implement, as
I don't know if the objc-API for jetbrains-plugins is publicly available or if i would have to infer all necessary informations from the PsiElement-API and
I currently have no clue how to find the corresponding storyboard
The text was updated successfully, but these errors were encountered:
When the cursor selects a string that represents a segue-identifier, like in
or in
and executes the plugin-action, it should open the corresponding storyboard and select the segue.
This may be very tricky to implement, as
The text was updated successfully, but these errors were encountered: