You can also disable cache for a specific state in the ui-router by setting the cache property to false:
.state("profileEditAddress", {
url : "/profileEditAddress/:id",
controller : "ProfileEditAddressCtrl",
cache : false,
templateUrl : "components/profileEditAddress/profileEditAddress.html"
})