原创 UIScrollView 小結

1. @property(nonatomic) BOOL bounces //當滾動到內容邊緣是否發生反彈,default is YES. 2. @property(nonatomic) BOOL alwaysBounceHori

原创 xamarin.ios 拖動tablecell來重新排序

參考:http://www.raywenderlich.com/63089/cookbook-moving-table-view-cells-with-a-long-press-gesture

原创 IOS 用UIWindow自定義AlertView(最基本代碼)

[cpp] view plaincopy //   //  ABCustomAlertView.h   //  KnowledgeChoice   //   //  Created by  on 13-6-19.   /

原创 C# Xamarin.Parse 模糊查詢 忽略大小寫

var query = ParseObject.GetQuery ("RatedMovies")  //.WhereContains("FaceBookName",searchText);                    .Wher

原创 xamarin.ios 綁定 oc libray

參考鏈接: xamarin.ios綁定百度地圖sdk http://developer.xamarin.com/guides/ios/advanced_topics/binding_objective-c/binding_types_

原创 Xamarin.ios 解決new NSUrl 返回爲空的方法。

var uri = new Uri (urlString); var nsurl = new NSUrl (uri.GetComponents (UriComponents.HttpRequestUrl, UriFormat.UriEsc

原创 Xcode7 上傳報錯

本人最近提交包的時候出現以下提示: Could not make parent directory for: /Users/xxx/.itmstransporter/softwaresupport/bin/Frameworks/ITu

原创 Xamarin.Forms 獲取設備的ip地址

May 16, 2015App Development, Coding, Programming, Uncategorized, XamarinIP Address, Xamarin, Xamarin Dependen

原创 xcode framework 真機+模擬器架構合併

1. xcode framework 真機+模擬器架構合併:      lipo -create [真機framework exec文件路徑] [模擬器framework exec文件路徑] -output [最終輸出路徑] 2. 查看f

原创 Xamarin.iOS使用Objective-C靜態類庫.a(Linking Native Libraries)

 Xamarin靜態類庫的binding實際上是一個C#與Objective-C方法間映射過程,由於第三方SDK對iOS開發至關重要,因此官方文檔中也對這塊也做了完整的介紹(Binding Objective-C Libraries

原创 Xamarin Studio 手動升級nuget 組件

You can find updated NuGet addin binaries that support NuGet 2.8.7 on GitHub. I have tested these on the Mac and they

原创 xamarn.android binding parse sdk for a week to work

Xamarin.Android PackageName 需要設置爲項目命名空間且全小寫。 http://blog.csdn.net/jameszhou/article/details/41806377 點贊 收藏

原创 Xamarin.Android set no title and no icon

ActionBar.SetIcon(Android.Resource.Color.Transparent); ActionBar.SetDisplayShowTitleEnabled(false); 點贊 收藏 分

原创 Xamarin.Android Get Screen size

protected override void OnCreate(Bundle bundle) { base.OnCreate(bundle); SetContentView(Resource.Layout.Main);

原创 Xamarin.IOS UIAlertController 自定義字體

            var alertController =UIAlertController.Create ("", messageText, UIAlertControllerStyle.ActionSheet);