Giter Club home page Giter Club logo

Comments (5)

mikiXuan avatar mikiXuan commented on August 21, 2024

更新cocoapod就好了。。。

from lzalbum.

lzwjava avatar lzwjava commented on August 21, 2024

棒。平时可以加个参数 pod instal --verbose --no-repo-update 这样更快一点

from lzalbum.

mikiXuan avatar mikiXuan commented on August 21, 2024

@lzwjava 对了,提个问题 为什么不把点赞的那个框做成动态可变的呢?现在应该是只显示一行的名字,到第二行的就不见了。在之前的一版本是点赞栏可以上下滑动,虽然只有一行但是滑动一下也是可以显示的。我在修改的时候发现那个点赞用的第三方库,他的提前计算高度的那个方法返回的值不正确,所以没法提前计算点赞栏的高度。后来我是直接生成cell,然后直接摆放在界面上,但是这样效率一般,而且不太适合动态滑动添加栏目,所以那一版我做的分页的。请问作者这个问题准备解决么?

from lzalbum.

mikiXuan avatar mikiXuan commented on August 21, 2024

现在是准备回归微信的刷新动态添加栏目了,所以回来取取经

from lzalbum.

mikiXuan avatar mikiXuan commented on August 21, 2024

对了 看你的更新想起来一个问题:LZAlbumReplyView.h 里面的弹键盘bug,我查到的原因是因为在ios9里面UIKeyboardDidShowNotification错误的通知,我解决的办法是加了个bool值isFirstResponder做判断,解决方法简单直接
-(void)keyboardDidShow{
if (isFirstResponder==NO) {

    [self becomeFirstResponderForInputTextField];
    isFirstResponder=YES;
}

}

-(void)resignFirstResponderForTwoTextFields{
if([self.inputTextField isFirstResponder]){
[self.inputTextField resignFirstResponder];
}

if([self.textField isFirstResponder]){
    [self.textField resignFirstResponder];
}


isFirstResponder=NO;

}

from lzalbum.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.