You could use both. that depends on your needs, and how you would like to set up your workflow.
If you choose the resolution field, once an issue is marked as Won't Fix you could filter it out from your list of issues. to get the list of all issues with Won't Fix you could use the followint JQL:
project = TEST AND resolution = "Won't Fix" and issuetype = Bug
project = TEST AND resolution = "Won't Fix" and issuetype = "Feature Request"
Once ready to work on that issue, you could change the resolution to open or something like that, to make it active again. To control when the users can set an issue to Won't Fix or Open you need to show/hide this field in the related screens.
On the other hand, by using a Won't Fix as a status, the filtering of issues is similar:
project = TEST AND status = "Won't Fix" and issuetype = "Feature Request"
To allow the users to be able so set the issue to Won't Fix status from a give status you need to create transitions from the first status to Won't Fix . As well, you need to create transitions from the Won't Fix status outward to any status you want the issue to go to next.
Basically, the main difference is not by marking the issues as Won't Fix, but in clearing that mark. In the first method, the issue status doesn't have to change, so once the Won't Fix will be changes the issue can return to be active from his current status. In the second method all issues will be in the same status, without any relation to which status they used to have, and all of them will be able to go to the same statuses.