Skip to content
This repository has been archived by the owner on Jun 6, 2019. It is now read-only.

Latest commit

 

History

History
81 lines (75 loc) · 2.27 KB

File metadata and controls

81 lines (75 loc) · 2.27 KB
id title
C93855D0-DBC4-4C81-B6E2-978C34EB1373
From 6.3.0 to 6.3.1
<title>Comparison between monotouch-6.3.0.255.dll and monotouch-6.3.1.0.dll</title>

Namespace: MonoTouch

Type Changed: MonoTouch.Constants

Removed:

 	public const string Version = "6.3.0";

Added:

 	public const string Version = "6.3.1";

New Type: MonoTouch.MonoTouchException

public class MonoTouchException : Exception {
public MonoTouchException (string message, params object [] args);
public MonoTouchException (int code, string message, params object [] args);
public MonoTouchException (int code, bool error, string message, params object [] args);
public MonoTouchException (int code, bool error, Exception innerException, string message, params object [] args);

public int Code {
	get;
}
public bool Error {
	get;
}

}

Namespace: MonoTouch.Foundation

Type Changed: MonoTouch.Foundation.ExportAttribute

Added:

 	public bool IsVariadic {
 		get;
 		set;
 	}

New Type: MonoTouch.Foundation.FieldAttribute

public class FieldAttribute : Attribute {
public FieldAttribute (string symbolName);
public FieldAttribute (string symbolName, string libraryName);

public string LibraryName {
	get;
	set;
}
public string SymbolName {
	get;
	set;
}

}

New Type: MonoTouch.Foundation.ProtocolAttribute

public sealed class ProtocolAttribute : Attribute {
public ProtocolAttribute ();

}

Namespace: MonoTouch.UIKit

Type Changed: MonoTouch.UIKit.UITableViewDelegate

Removed:

 	public virtual void WillDeselectRow (UITableView tableView, MonoTouch.Foundation.NSIndexPath indexPath);

Added:

 	public virtual MonoTouch.Foundation.NSIndexPath WillDeselectRow (UITableView tableView, MonoTouch.Foundation.NSIndexPath indexPath);

Type Changed: MonoTouch.UIKit.UITableViewSource

Removed:

 	public virtual void WillDeselectRow (UITableView tableView, MonoTouch.Foundation.NSIndexPath indexPath);

Added:

 	public virtual MonoTouch.Foundation.NSIndexPath WillDeselectRow (UITableView tableView, MonoTouch.Foundation.NSIndexPath indexPath);