public override void ViewDidAppear (bool animated)
		{
			base.ViewDidAppear (animated);

			const string STATION_URL_STRING = "http://1661.live.streamtheworld.com:80/CBC_R3_WEB_SC";
			player = new CCFWebRadioPlayer (new NSUrl (STATION_URL_STRING));
			stationURLLabel.Text = player.StationURL.AbsoluteString;
			player.Start ();
		}
        public override void ViewDidAppear(bool animated)
        {
            base.ViewDidAppear(animated);

            const string STATION_URL_STRING = "http://1661.live.streamtheworld.com:80/CBC_R3_WEB_SC";

            player = new CCFWebRadioPlayer(new NSUrl(STATION_URL_STRING));
            stationURLLabel.Text = player.StationURL.AbsoluteString;
            player.Start();
        }