Skip to content

Commit

Permalink
Site updated: 2016-11-30 14:00:31
Browse files Browse the repository at this point in the history
  • Loading branch information
yuntai01 authored and yuntai01 committed Nov 30, 2016
1 parent cdae87d commit 828a5de
Show file tree
Hide file tree
Showing 12 changed files with 1,660 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<link href="/css/main.css?v=5.1.0" rel="stylesheet" type="text/css" />


<meta name="keywords" content="Hexo, NexT" />
<meta name="keywords" content="UITextField," />



Expand Down Expand Up @@ -96,7 +96,7 @@
1- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string;
解决方法:
1、利用">
<meta property="og:updated_time" content="2016-11-30T05:53:35.000Z">
<meta property="og:updated_time" content="2016-11-30T05:59:24.000Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="iOS7中UITextField切换中文时某些协议方法无响应">
<meta name="twitter:description" content="UITextField切换中文输入,选中键盘中被mark的中文字符时,iOS7中UITextField不会调用如下协议方法:
Expand Down Expand Up @@ -387,6 +387,12 @@ <h1 class="post-title" itemprop="name headline">

<footer class="post-footer">

<div class="post-tags">

<a href="/tags/UITextField/" rel="tag"># UITextField</a>

</div>



<div class="post-nav">
Expand Down Expand Up @@ -478,6 +484,13 @@ <h1 class="post-title" itemprop="name headline">



<div class="site-state-item site-state-tags">
<a href="/tags">
<span class="site-state-item-count">3</span>
<span class="site-state-item-name">标签</span>
</a>
</div>


</nav>

Expand Down
37 changes: 35 additions & 2 deletions 2016/11/30/objc_msgSend 的正确使用姿势/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<link href="/css/main.css?v=5.1.0" rel="stylesheet" type="text/css" />


<meta name="keywords" content="Hexo, NexT" />
<meta name="keywords" content="runtime,objc_msgSend," />



Expand Down Expand Up @@ -98,7 +98,7 @@
在64位机器上运行‘objc_msgSend’,如果姿势不对,编译器不会提示警告,而是直接crash。
解决办法:
需要将objc_msgSend重新声明成自己想要的参数,如下所示:12//objc_m">
<meta property="og:updated_time" content="2016-11-30T05:50:32.000Z">
<meta property="og:updated_time" content="2016-11-30T06:00:17.000Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="objc_msgSend 的正确使用姿势">
<meta name="twitter:description" content="首先需要import objc_msgSend 所在的头文件1#import &amp;lt;objc/message.h&amp;gt;
Expand Down Expand Up @@ -318,6 +318,24 @@ <h1 class="post-title" itemprop="name headline">
</span>


<span class="post-category" >
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">分类于</span>

<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/iOS/" itemprop="url" rel="index">
<span itemprop="name">iOS</span>
</a>
</span>




</span>




Expand Down Expand Up @@ -370,6 +388,14 @@ <h1 class="post-title" itemprop="name headline">

<footer class="post-footer">

<div class="post-tags">

<a href="/tags/runtime/" rel="tag"># runtime</a>

<a href="/tags/objc-msgSend/" rel="tag"># objc_msgSend</a>

</div>



<div class="post-nav">
Expand Down Expand Up @@ -457,6 +483,13 @@ <h1 class="post-title" itemprop="name headline">



<div class="site-state-item site-state-tags">
<a href="/tags">
<span class="site-state-item-count">3</span>
<span class="site-state-item-name">标签</span>
</a>
</div>


</nav>

Expand Down
7 changes: 7 additions & 0 deletions 2016/11/30/搭建GitHub个人博客/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -493,6 +493,13 @@ <h2 id="5-更多有趣的插件"><a href="#5-更多有趣的插件" class="heade



<div class="site-state-item site-state-tags">
<a href="/tags">
<span class="site-state-item-count">3</span>
<span class="site-state-item-name">标签</span>
</a>
</div>


</nav>

Expand Down
7 changes: 7 additions & 0 deletions archives/2016/11/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,13 @@ <h1 class="post-title">



<div class="site-state-item site-state-tags">
<a href="/tags">
<span class="site-state-item-count">3</span>
<span class="site-state-item-name">标签</span>
</a>
</div>


</nav>

Expand Down
7 changes: 7 additions & 0 deletions archives/2016/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,13 @@ <h1 class="post-title">



<div class="site-state-item site-state-tags">
<a href="/tags">
<span class="site-state-item-count">3</span>
<span class="site-state-item-name">标签</span>
</a>
</div>


</nav>

Expand Down
7 changes: 7 additions & 0 deletions archives/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,13 @@ <h1 class="post-title">



<div class="site-state-item site-state-tags">
<a href="/tags">
<span class="site-state-item-count">3</span>
<span class="site-state-item-name">标签</span>
</a>
</div>


</nav>

Expand Down
35 changes: 35 additions & 0 deletions categories/iOS/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,34 @@ <h2 >



<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">

<h1 class="post-title">

<a class="post-title-link" href="/2016/11/30/objc_msgSend 的正确使用姿势/" itemprop="url">

<span itemprop="name">objc_msgSend 的正确使用姿势</span>

</a>

</h1>

<div class="post-meta">
<time class="post-time" itemprop="dateCreated"
datetime="2016-11-30T10:30:50+08:00"
content="2016-11-30" >
11-30
</time>
</div>

</header>
</article>





<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">

Expand Down Expand Up @@ -338,6 +366,13 @@ <h1 class="post-title">



<div class="site-state-item site-state-tags">
<a href="/tags">
<span class="site-state-item-count">3</span>
<span class="site-state-item-name">标签</span>
</a>
</div>


</nav>

Expand Down
2 changes: 1 addition & 1 deletion css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -1682,7 +1682,7 @@ pre .javascript .function {
width: 4px;
height: 4px;
border-radius: 50%;
background: #ff08b6;
background: #ff175c;
}
.links-of-blogroll {
font-size: 13px;
Expand Down
25 changes: 25 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,24 @@ <h1 class="post-title" itemprop="name headline">
</span>


<span class="post-category" >
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">分类于</span>

<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/iOS/" itemprop="url" rel="index">
<span itemprop="name">iOS</span>
</a>
</span>




</span>




Expand Down Expand Up @@ -713,6 +731,13 @@ <h2 id="5-更多有趣的插件"><a href="#5-更多有趣的插件" class="heade



<div class="site-state-item site-state-tags">
<a href="/tags">
<span class="site-state-item-count">3</span>
<span class="site-state-item-name">标签</span>
</a>
</div>


</nav>

Expand Down
Loading

0 comments on commit 828a5de

Please sign in to comment.