Skip to content

Instantly share code, notes, and snippets.

@jstedfast
Created July 24, 2015 17:55
Show Gist options
  • Save jstedfast/9a7eab08d0d701783975 to your computer and use it in GitHub Desktop.
Save jstedfast/9a7eab08d0d701783975 to your computer and use it in GitHub Desktop.
// WARNING
//
// This file has been generated automatically by Xamarin Studio from the outlets and
// actions declared in your storyboard file.
// Manual changes to this file will not be maintained.
//
using Foundation;
using System;
using System.CodeDom.Compiler;
using UIKit;
namespace ImapClientDemo.iOS
{
[Register ("MessageListTableViewCell")]
partial class MessageListTableViewCell
{
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
public UILabel DateLabel { get; set; }
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
public UILabel FromLabel { get; set; }
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
public UILabel PreviewLabel { get; set; }
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
public UILabel SubjectLabel { get; set; }
void ReleaseDesignerOutlets ()
{
if (DateLabel != null) {
DateLabel.Dispose ();
DateLabel = null;
}
if (FromLabel != null) {
FromLabel.Dispose ();
FromLabel = null;
}
if (PreviewLabel != null) {
PreviewLabel.Dispose ();
PreviewLabel = null;
}
if (SubjectLabel != null) {
SubjectLabel.Dispose ();
SubjectLabel = null;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment