- 博客(12)
- 问答 (1)
- 收藏
- 关注
原创 iOS 查找sdk所在路径的方法
1.找到Xcode.app –> 单击右键 –> 显示包内容 –> 路径:/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs2.完整路径:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
2017-01-04 11:04:42 2380
原创 xamarin.ios中显示html标记
public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath){ var htmlText = SearchResult.Items[indexPath.Row].Catalog + "\n" + SearchResult.Items[indexPath.Row
2016-10-20 10:17:51 561
原创 xamarin.ios中下拉加载更多内容
public override void Scrolled(UIScrollView scrollView){ nfloat height = scrollView.Frame.Size.Height - 80; nfloat distanceFromBottom = scrollView.ContentSize.Height - scrol
2016-10-20 10:06:26 873
原创 xamarin.ios中设置button的边框及样式
public void SetButtonBorderStyle(UIButton button){ button.Layer.BorderColor = new CGColor((nfloat)(116 / 255.0), (nfloat)(209 / 255.0), (nfloat)(248 / 255.0)); button.Layer
2016-10-20 09:53:53 1339
原创 Xamarin.Forms中的Animation动画
var animation = new Animation(v => messageLabel.Text = “图片已成功保存至:” + “图片位置”, 0, 10, Easing.CubicInOut);animation.Commit(messageLabel, “animation”, rate: Convert.ToUInt32(200), length: 500, finished: (l
2016-08-22 16:33:21 913 1
原创 Xamarin.Forms中获取屏幕宽度
App.cs中: public partial class App : Application { static public int ScreenWidth; }AppDelegate.cs中: public override bool FinishedLaunching(UIApplication app, NSDictionary options) {
2016-08-22 13:58:37 1827
原创 Xamarin.Forms中隐藏导航条
在Page页中: protected override void OnAppearing() { base.OnAppearing(); NavigationPage.SetHasNavigationBar(this, false); }
2016-08-22 13:27:22 2338 1
空空如也
mvvmcross 模式下 iOS的侧拉菜单如何设置?
2016-09-02
TA创建的收藏夹 TA关注的收藏夹
TA关注的人