原创 Xamarin.ios 綁定Objective-C libraries中容易出現的問題

This blog post is about producing better bindings of Objective-C libraries forXamarin.iOS and Xamarin.Mac . Read the s

原创 mac 上顯示/隱藏 隱藏文件

Some people like to know everything that is on their computer. Admittedly, I was one of these people many moons ag

原创 xcode11 上傳ipa

xcrun altool --upload-app --type ios --file "/Users/appledev/Downloads/XunDaApp.iOS.ipa" --username "[email protected]" --

原创 Xamarin.Forms 啓動頁面的設置

Create Splash Screens on Xamarin Forms: The right way! You wanted to learn Xamarin Forms to write code once for both An

原创 XCode 使用筆記

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

原创 xcode 中 cocoapods 恢復

打開終端Terminal, cd Pofile目錄, 執行命令: pod update

原创 Penetration Testing for iPhone Applications

Runtime analysis allows an attacker to manipulate the application’s behaviour at runtime to bypass security locks and a

原创 Xamarin.ios UIImagePickerController 僅啓用拍照功能。 禁止視頻。

imagePicker.MediaTypes = new string[] { UTType.Image };

原创 Xamarin.ios 使用webview加載gif圖片

            NSData imageData = NSData.FromFile(NSBundle.MainBundle.PathForResource("test","gif"));    

原创 Xamarin.ios 設置導航欄後退按鈕 不顯示文字

UIBarButtonItem.Appearance.SetBackButtonTitlePositionAdjustment(new UIOffset(System.nfloat.MinValue,System.nfloat.MinVa

原创 Xamarin.iOS 獲取健康計步數據

NSCalendar calendar = NSCalendar.CurrentCalendar;            NSDateComponents interval = new NSDateComponents         

原创 Xamarin 判斷顏色值得相近程度

        public static Color GetForeColor(Color foreColor, Color backColor)         {             var c

原创 Xamarin 畫圓

//// Oval Drawing   畫園 var ovalPath = UIBezierPath.FromOval(new CGRect(51.0f, 66.0f, 37.0f, 36.0f)); UIColor.Gray.SetFi

原创 Xamarin.IOS UiTextView 長文本不顯示問題。

ios中UITextView 賦值很長的文字時,文字顯示空白。拷貝和複製功能都可用,說明文字存在,但是就是不顯示。  解決方案:   設置 ScrollEnabled 屬性爲true。 參閱: ht

原创 合理規範使用VSTS代碼管理工具 ---之PR與Branch(tag)的使用

軟件開發週期過程中,一直存在着生產與開發兩種環境。所以對應着代碼中需要保留生產與開發兩種代碼,而Branch的存在很好的解決了這個問題。 生產開發環境的完美解決方案: 高效考慮 Created with Raphaël 2.1.0Ma